Python SDK for the person.run API
Project description
person-sdk
Python SDK for the person.run API.
Install
pip install person-sdk
With Pydantic models for typed responses:
pip install person-sdk[models]
Quickstart
from person_sdk import PersonClient
client = PersonClient(
api_key="your-api-key",
default_tenant_id="your-tenant-id",
)
persona = client.create_persona(seed={
"firstName": "Aria",
"lastName": "Chen",
"age": 32,
"location": "San Francisco",
"baseOccupation": "Product designer",
})
reply = client.prompt(
persona_id=persona["persona"]["id"],
user_prompt="How do you approach design challenges?",
)
print(reply["response"])
Features
- Auto-generated Pydantic models from OpenAPI spec (optional)
- Built-in retries with exponential backoff on 429/5xx
default_tenant_idto avoid passing tenant on every call- Full coverage: personas, prompting, timeline, populations, and studies
- Zero required dependencies — stdlib only
License
MIT
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
person_sdk-1.0.2.tar.gz
(17.9 kB
view details)
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 person_sdk-1.0.2.tar.gz.
File metadata
- Download URL: person_sdk-1.0.2.tar.gz
- Upload date:
- Size: 17.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c045ae7fcc3c0db81607dc15d4763e32212419e38c797f5f80c4c2e1263ae374
|
|
| MD5 |
3656c91aca35f6da0a3cb9f9144274c2
|
|
| BLAKE2b-256 |
36fddf92bbbfff06a3b12e6a4816993e43612fed0023a6d5bae00a889d7a8f1d
|
File details
Details for the file person_sdk-1.0.2-py3-none-any.whl.
File metadata
- Download URL: person_sdk-1.0.2-py3-none-any.whl
- Upload date:
- Size: 13.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bc6395caedbf665ad35416cb020bc179f5a12606d14e575b47f72aa58c0538cb
|
|
| MD5 |
34e2a03a23c002e1e61888d90167e244
|
|
| BLAKE2b-256 |
c86b318d9c24d1f3c5c4536c54b56ddb970ea05f31c3927b625ea07154d6e8a7
|