Python SDK for the Payman AI Platform
Project description
Payman SDK Python
This SDK provides a simple way to interact with the Payman AI Platform's API using client credentials authentication. The SDK automatically handles token management, including fetching and refreshing access tokens.
Installation
Prerequisites
- Python 3.8 or higher
- Poetry for dependency management
Setup
# Install Poetry (if not already installed)
curl -sSL https://install.python-poetry.org | python3 -
# Clone the repository
git clone https://github.com/payman-ai/payman-sdk-python.git
cd payman-sdk-python
# Install dependencies
poetry install
# Activate virtual environment
poetry shell
Environment Setup
Before running the SDK or tests, you need to set up your environment variables. Create a .env file in the root directory with the following variables:
PAYMAN_CLIENT_ID=your-client-id
PAYMAN_CLIENT_SECRET=your-client-secret
These credentials are required for both running the SDK and executing tests.
Development
Project Structure
payman-sdk-python/
├── payman_sdk/ # Main package directory
│ ├── __init__.py # Package initialization
│ ├── client.py # Main client implementation
│ ├── types.py # Type definitions
│ └── utils.py # Utility functions
├── tests/ # Test suite
│ ├── __init__.py
│ ├── conftest.py
│ ├── test_client.py
│ ├── test_types.py
│ └── test_utils.py
├── pyproject.toml # Poetry configuration
├── poetry.lock # Locked dependencies
├── pytest.ini # Pytest configuration
├── CHANGELOG.md # Version history
└── README.md # This file
Development Workflow
- Setup Development Environment
# Install all dependencies including development tools
poetry install
# Activate virtual environment
poetry shell
- Running Tests
# Run all tests with coverage
poetry run pytest
# Run specific test file
poetry run pytest tests/test_client.py -v
# Run tests with coverage report
poetry run pytest --cov=payman_sdk --cov-report=html
- Code Quality
# Format code
poetry run black .
poetry run isort .
# Type checking
poetry run mypy .
# Run all quality checks
poetry run black . && poetry run isort . && poetry run mypy .
- Building and Publishing
# Build the package
poetry build
# Publish to PyPI (requires authentication)
poetry publish
Usage
Initialization
The SDK provides three ways to initialize the client:
- Using client credentials (recommended for server-side applications):
from payman_sdk import PaymanClient
payman = PaymanClient.with_credentials({
'client_id': 'your-client-id',
'client_secret': 'your-client-secret',
})
- Using an authorization code (for OAuth flow):
payman = PaymanClient.with_auth_code({
'client_id': 'your-client-id',
'environment': 'TEST'
}, 'your-auth-code')
- Using an access token (when you already have a token):
payman = PaymanClient.with_token(
'your-client-id',
{
'access_token': 'your-access-token',
'expires_in': 3600 # token expiry in seconds
},
)
Making Requests
- Get a formatted response (recommended for most use cases):
response = payman.ask("What's the weather?")
print(response)
- Get a raw response (when you need the full JSON-RPC response):
raw_response = payman.ask("What's the weather?", raw=True)
print(raw_response)
- Streaming request with formatted responses:
payman.ask("What's the weather?", {
'on_message': lambda response: print(f"Formatted response: {response}")
})
- Streaming request with raw responses:
payman.ask("What's the weather?", {
'on_message': lambda response: print(f"Raw response: {response}")
}, raw=True)
- Start a new session with metadata:
response = payman.ask("Hello!", {
'new_session': True,
'metadata': {'source': 'web-app'}
})
Contributing
- Fork the repository
- Create a feature branch:
git checkout -b feature-name - Make your changes
- Run tests:
poetry run pytest - Format code:
poetry run black . && poetry run isort . - Check types:
poetry run mypy . - Commit your changes:
git commit -am 'Add feature' - Push to the branch:
git push origin feature-name - Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Testing
The SDK uses pytest for testing. To run the tests:
- Make sure you have set up your
.envfile with the required credentials - Install dependencies:
pip install -e ".[dev]"
- Run the tests:
pytest
The test suite will verify the SDK's functionality, including authentication, API interactions, and response handling.
API Reference
PaymanClient
Static Methods
-
with_credentials(config: PaymanConfig) -> PaymanClient- Creates a client using client credentials
config: Configuration object containing client_id, client_secret, and optional environment
-
with_auth_code(config: PaymanConfig, auth_code: str) -> PaymanClient- Creates a client using an authorization code
config: Configuration object containing client_id, client_secret, and optional environmentauth_code: Authorization code obtained via OAuth
-
with_token(client_id: str, token_info: Dict[str, Any], environment: Optional[Environment] = 'LIVE') -> PaymanClient- Creates a client using an existing access token
client_id: Your Payman client IDtoken_info: Object containing access token and its expiration timeenvironment: Optional environment to use (defaults to "LIVE")
Instance Methods
-
ask(text: str, options: Optional[AskOptions] = None, raw: bool = False) -> Union[FormattedTaskResponse, TaskResponse]- Sends a message to the Payman AI Agent
text: The message or question to sendoptions: Optional parameters for the requestraw: Whether to return raw responses (default: False)
-
get_access_token() -> Optional[Dict[str, Any]]- Gets the current access token and its expiration information
- Returns None if no token is set
-
is_access_token_expired() -> bool- Checks if the current access token has expired
- Returns True if the token has expired or is about to expire within 60 seconds
Types
-
PaymanConfig{ 'client_id': str, 'client_secret': str, 'environment': Optional[Literal['TEST', 'LIVE', 'INTERNAL']] }
-
AskOptions{ 'on_message': Optional[Callable[[Union[FormattedTaskResponse, TaskResponse]], None]], 'new_session': Optional[bool], 'metadata': Optional[Dict[str, Any]], 'part_metadata': Optional[Dict[str, Any]], 'message_metadata': Optional[Dict[str, Any]] }
Response Types
-
FormattedTaskResponse{ 'status': Literal['completed', 'failed', 'in_progress'], 'is_final': bool, 'artifacts': Optional[List[Dict[str, Any]]], 'error': Optional[Dict[str, Any]] }
-
TaskResponse{ 'jsonrpc': Literal['2.0'], 'id': str, 'result': Optional[Dict[str, Any]], 'error': Optional[Dict[str, Any]] }
Events
-
TaskStatusUpdateEvent{ 'type': Literal['status_update'], 'status': Literal['completed', 'failed', 'in_progress'], 'is_final': bool }
-
TaskArtifactUpdateEvent{ 'type': Literal['artifact_update'], 'artifacts': List[Dict[str, Any]] }
Error Handling
The SDK uses the requests library for HTTP requests. All API calls will raise an exception if the request fails. You can catch these exceptions and handle them appropriately:
try:
response = payman.ask("What's the weather?")
except requests.exceptions.RequestException as e:
if hasattr(e, 'response'):
# The request was made and the server responded with a status code
# that falls out of the range of 2xx
print(e.response.json())
print(e.response.status_code)
else:
# Something happened in setting up the request that triggered an Error
print('Error:', str(e))
Project details
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 paymanai_sdk-1.0.4.tar.gz.
File metadata
- Download URL: paymanai_sdk-1.0.4.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.22 Linux/6.11.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6006515a3cd6c6fb08cf19ab11335153fd68ef98af4dcf85fed61b1590a4ceae
|
|
| MD5 |
054e3315fd92e7cfab681f09b3b0bbd5
|
|
| BLAKE2b-256 |
7230c4a3c61065526c440a1c82c277835188f12f6ca6b389936e167e31424231
|
File details
Details for the file paymanai_sdk-1.0.4-py3-none-any.whl.
File metadata
- Download URL: paymanai_sdk-1.0.4-py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.5 CPython/3.9.22 Linux/6.11.0-1014-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
830a07d7db3fc3755dc6e3a3279d2d7dca7cd65decc3e3ca870b18fc43a7606a
|
|
| MD5 |
5721edd57a8def9c208bc013326db8b7
|
|
| BLAKE2b-256 |
9ba28c028381340f98e2af623eaef0644aaaa772c7bf7aa6b98ab79c31cb961c
|