Payloop Python SDK
Project description
Welcome to Payloop!
Payloop is a new infrastructure platform that helps AI companies monetize agents based on business outcomes, like leads generated or tickets resolved, rather than usage or seat-based pricing. As agents begin automating workflows across sales, support, and operations, teams need clearer pricing strategies and better visibility into what it actually costs to deliver results.
Payloop gives AI-native companies the tools to define outcomes, track margins per action, and automate billing when those outcomes are met - ultimately helping teams price more confidently and scale more efficiently.
Installation
pip install payloop
Usage
Anthropic
import anthropic
from payloop import Payloop
client = anthropic.Anthropic(...)
payloop = Payloop(api_key="[your Payloop API key]").anthropic.register(client)
from google import genai
from payloop import Payloop
client = genai.Client(...)
payloop = Payloop(api_key="[your Payloop API key]").google.register(client)
LangChain
from lanchain_google_vertexai import ChatVertexAI
from payloop import Payloop
client = ChatVertexAI(...)
payloop = Payloop(api_key="[your Payloop API key]".langchain.register(
chatvertexai=client
)
-----------------------------------------------------------------------
from langchain_openai import ChatOpenAI
from payloop import Payloop
client = ChatOpenAI(...)
payloop = Payloop(api_key="[your Payloop API key]".langchain.register(
chatopenai=client
)
OpenAI
from openai import OpenAI
from payloop import Payloop
client = OpenAI(...)
payloop = Payloop(api_key="[your Payloop API key]").openai.register(client)
After you have instantiated your LLM client and registered it with Payloop all you need to do is use the instantiated LLM object as you normally would.
Transactions
Each call you make to any LLM client that is registered with Payloop will tag your conversation with a transaction ID. As long as the Payloop object you instantiated remains in scope, all LLM calls will be tagged with the same transaction ID.
You might use this in the case you have a single agent that first calls OpenAI, then Anthropic, then Gemini and you want to let Payloop know that all of these operations are associated with a single agent.
If you want to start a new transaction at any time you can either reinstantiate the Payloop object or execute the following call on an instantiated Payloop instance:
payloop.new_transaction()
Attribution
Payloop can provide usage and cost breakdowns based on the customers that are using your product. To create attribution, do the following:
from openai import OpenAI
from payloop import Payloop
client = OpenAI(api_key="...")
payloop = (
Payloop(api_key="[your Payloop API key]")
.attribution(
parent_id=123,
parent_name="Customer A",
parent_uuid=...,
subsidiary_id=456,
subsidiary_name="Customer Subsidiary B",
subsidiary_uuid=...
)
.openai.register(client)
)
You can provide a parent, subsidiary or parent and subsidiary. ID, name and UUID are not all required, only one is. However, we strongly encourage that you provide either an ID or a UUID as a unique identifier for the associated parent or subsidiary.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file payloop-0.2.2.tar.gz.
File metadata
- Download URL: payloop-0.2.2.tar.gz
- Upload date:
- Size: 9.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98b4b662602ba2bbaa92c0744f7977005e1e98c601a8eb7df8d137fe6657bfc4
|
|
| MD5 |
0e255a464e169a9b917cd56b2ba69a6b
|
|
| BLAKE2b-256 |
8e134e66115f4e8ca3be07931b942a713b99d979bc1f8088d3afe5b73eb9fd98
|
File details
Details for the file payloop-0.2.2-py3-none-any.whl.
File metadata
- Download URL: payloop-0.2.2-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48854616fa585ea88266a2fc9c425571408b33348010f3d46bf3c78d180d101b
|
|
| MD5 |
2ef7b6bc358178365c9accff0daf345a
|
|
| BLAKE2b-256 |
92ef7c770b0c7823b5b79918b83e55f09adbb256742bb195adc84fb62ba9cb20
|