vintraa-agent
vintraa-agent is the Python SDK for native Vintraa agent integrations, with
a framework-neutral core and an optional FastAPI adapter.
This package is an alpha release. Its API may change before 1.0.0.
python -m pip install vintraa-agent
# FastAPI and Redis adapters:
python -m pip install 'vintraa-agent[fastapi,redis]'
See the Vintraa developer guide and public API reference. Using the SDK is optional and does not itself certify an agent.
from vintraa_agent import (
AsyncInMemoryIdempotencyStore,
HostedPublicKeyProvider,
InvocationExecutor,
SuccessResult,
)
from vintraa_agent.fastapi import create_fastapi_router
async def generate_roster(invocation):
return SuccessResult(
output={
"workspaceId": invocation.envelope.context.workspace.id,
}
)
async def authorize(invocation):
return "ROSTER_MANAGER" in invocation.envelope.context.user.roles
executor = InvocationExecutor(
public_keys=HostedPublicKeyProvider(),
idempotency=AsyncInMemoryIdempotencyStore(), # use Redis in production
handlers={"roster.generate": generate_roster},
authorize=authorize,
)
app.include_router(create_fastapi_router(executor))
The FastAPI adapter streams and bounds the untouched request body before
verification; tune max_body_bytes only when the signed protocol limit changes. Use
AsyncRedisIdempotencyStore with redis.asyncio in multi-process production;
the in-memory store is development-only. PublisherClient.register_draft
validates the marketplace release manifest and creates a DRAFT only.
Hosted signing-key discovery uses a bounded negative cache, a refresh cooldown, a rolling fetch-rate cap, and one in-flight refresh so attacker-controlled key identifiers cannot amplify registry traffic.
For a developer-hosted customer UI, use
create_external_experience_exchange_proof on the server that receives
Vintraa's top-level launch POST. Keep both the private key and exchanged access
token out of browser JavaScript and browser storage.
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 vintraa_agent-0.1.2.tar.gz.
File metadata
- Download URL: vintraa_agent-0.1.2.tar.gz
- Upload date:
- Size: 97.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
227896f3f284eb8cbaa511d48f7feeb106d8501b9031b232da5f262c3134bf50
|
|
| MD5 |
4397da0fa48c3a44b34bc32a42c031e2
|
|
| BLAKE2b-256 |
71f82121a69be8ff22b38a2e26e22baf06b044633251ff1b2ec97e718e2ab4de
|
File details
Details for the file vintraa_agent-0.1.2-py3-none-any.whl.
File metadata
- Download URL: vintraa_agent-0.1.2-py3-none-any.whl
- Upload date:
- Size: 37.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/7.0.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
81387eb66cf7cf9154250012ac974ea49a76447a495a9dd7e13924ebd48e253c
|
|
| MD5 |
47370d9ec58df62427c0f99df4321e6c
|
|
| BLAKE2b-256 |
e1ef2b88e36d4f9441aa360b3537dfb005f0c19dff6b356b57b85488ec08a0e2
|