Skip to main content

Expose djangorestframework-services services and selectors as a Pydantic-AI toolset.

Project description

djangorestframework-pydantic-ai

CI PyPI Python versions Django versions Docs Coverage Ruff License

Expose djangorestframework-services services and selectors as a Pydantic-AI toolset, so a plain pydantic_ai.Agent can call them as tools — no MCP server and no AG-UI bridge in the path.

Every tool call routes through drf-services' transport-neutral surface (dispatch_spec plus its off-HTTP helpers), so a tool call runs the same input validation, the same permission_classes — both class-level has_permission and object-level has_object_permission on the resolved row — and the same serializer rendering your DRF views apply, just without the HTTP hop.

Install

pip install djangorestframework-pydantic-ai

It depends only on djangorestframework-services and pydantic-ai-slim. A model provider is pulled in separately, the usual Pydantic-AI way (e.g. pip install "pydantic-ai-slim[anthropic]").

Quickstart

from pydantic_ai import Agent
from rest_framework_pydantic_ai import AgentDeps, SpecToolset

toolset = SpecToolset({
    "list_orders":  orders_selector_spec,   # SelectorSpec -> read-only tool
    "create_order": create_order_spec,      # ServiceSpec  -> mutation tool
})

agent = Agent("anthropic:claude-opus-4-8", deps_type=AgentDeps, toolsets=[toolset])

result = await agent.run(
    "create an order of 3 widgets",
    deps=AgentDeps(user=request.user),
)

The agent acts as deps.user: each call builds an off-HTTP request/view context, enforces the spec's permission_classes (class- and object-level), dispatches the spec, and renders the result through the spec's serializer. List selectors gain page / limit / order tool args.

Failures map onto the model loop so the agent self-corrects: invalid input, a bad page / limit / order value, and unexpected (hallucinated) arguments come back as ModelRetry; a business error or missing row becomes a readable {"error": ...}; a denied permission raises PermissionDenied and aborts the run. Unexpected arguments are rejected by default — pass unknown_arguments= to SpecToolset (IGNORE / PASSTHROUGH) to change that.

See the documentation for the full reference.

License

MIT

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

djangorestframework_pydantic_ai-0.9.1.tar.gz (133.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

djangorestframework_pydantic_ai-0.9.1-py3-none-any.whl (20.2 kB view details)

Uploaded Python 3

File details

Details for the file djangorestframework_pydantic_ai-0.9.1.tar.gz.

File metadata

File hashes

Hashes for djangorestframework_pydantic_ai-0.9.1.tar.gz
Algorithm Hash digest
SHA256 3745cddbf9ff827aec88d83258960650a6ce58e42c996d8cee59b712b4feb19f
MD5 92210971e60d4dd0d9903773055e9917
BLAKE2b-256 1a9a921d97989d8ac2ce3e2d5fad6d42a92d56d929e58d8008fc632dc80b844d

See more details on using hashes here.

Provenance

The following attestation bundles were made for djangorestframework_pydantic_ai-0.9.1.tar.gz:

Publisher: release.yml on Artui/djangorestframework-pydantic-ai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file djangorestframework_pydantic_ai-0.9.1-py3-none-any.whl.

File metadata

File hashes

Hashes for djangorestframework_pydantic_ai-0.9.1-py3-none-any.whl
Algorithm Hash digest
SHA256 610e75bf2e4beb7eab3b65ac0580cf3dcd82a25961ada0c25f4182dd3e168b9f
MD5 6bfd4743aa83cc539eeec097a1298412
BLAKE2b-256 73ea4051ff7e1be63922edcbee994df2eba552f08327a7c119d44bcf44a0e863

See more details on using hashes here.

Provenance

The following attestation bundles were made for djangorestframework_pydantic_ai-0.9.1-py3-none-any.whl:

Publisher: release.yml on Artui/djangorestframework-pydantic-ai

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page