Skip to content

valkurai/sdk-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

valkurai-python

Python SDK for Valkurai — financial firewall for autonomous AI agents.

Status

Alpha — in active development. Beta access at valkurai.com.

Installation (alpha)

pip install valkurai

Quick start

from valkurai import AgentWallet

wallet = AgentWallet(api_key="vk_live_...")
wallet.pay(
    amount=49.00,
    vendor="github",
    description="Copilot subscription renewal"
)

Framework integrations

LangChain

from valkurai.sdk.langchain import ValkuraiPayTool

tools = [ValkuraiPayTool(api_key="vk_live_...")]
agent = create_openai_tools_agent(llm, tools, prompt)

CrewAI

from valkurai.sdk.crewai import ValkuraiPayTool

buyer = Agent(
    role="Buyer",
    tools=[ValkuraiPayTool(api_key="vk_live_...")]
)

Anthropic tool use

from valkurai.sdk.anthropic import ValkuraiPayTool

tool = ValkuraiPayTool(api_key="vk_live_...")

OpenAI Assistants

from valkurai.sdk.openai import ValkuraiPayTool

tool = ValkuraiPayTool(api_key="vk_live_...")

Licence

SDK wrappers: MIT Valkurai core platform: Proprietary

About

Python SDK for Valkurai — LangChain, CrewAI, OpenAI, and Anthropic wrappers

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors