Metadata-Version: 2.3
Name: aqven
Version: 0.0.0
Summary: Engineering layer for reliable AI workflows: files as the source of truth, a compiler, a checkpointed runtime and a local Studio.
Keywords: ai,llm,workflow,agents,evaluation,pydantic-ai
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: aqven-llm==0.0.0
Requires-Dist: pydantic==2.13.5
Requires-Dist: ruamel-yaml==0.19.1
Requires-Dist: python-liquid==2.3.1
Requires-Dist: httpx2==2.13.0
Requires-Dist: pydantic-ai-slim[mcp]==2.43.0
Requires-Dist: pydantic-evals==2.43.0
Requires-Dist: dbos==2.31.1
Requires-Dist: fastapi==0.141.1
Requires-Dist: uvicorn==0.53.0
Requires-Dist: python-multipart==0.0.32
Requires-Dist: mcp==2.2.0
Requires-Dist: rfc8785==0.1.4
Requires-Dist: watchfiles==1.2.0
Requires-Dist: genai-prices==0.1.7
Requires-Dist: opentelemetry-sdk==1.44.0
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.44.0
Requires-Dist: claude-agent-sdk==0.2.154
Requires-Dist: openai-codex==0.147.0
Requires-Dist: httpx==0.28.1
Requires-Dist: tenacity==9.1.4
Requires-Dist: python-dotenv==1.2.3
Requires-Dist: aqven-llm[anthropic]==0.0.0 ; extra == 'anthropic'
Requires-Dist: aqven-llm[bedrock]==0.0.0 ; extra == 'bedrock'
Requires-Dist: aqven-llm[cohere]==0.0.0 ; extra == 'cohere'
Requires-Dist: aqven-llm[google]==0.0.0 ; extra == 'google'
Requires-Dist: aqven-llm[groq]==0.0.0 ; extra == 'groq'
Requires-Dist: aqven-llm[huggingface]==0.0.0 ; extra == 'huggingface'
Requires-Dist: aqven-llm[mistral]==0.0.0 ; extra == 'mistral'
Requires-Dist: aqven-llm[xai]==0.0.0 ; extra == 'xai'
Requires-Python: >=3.14, <3.15
Project-URL: Homepage, https://aqvenstudio.com
Project-URL: Documentation, https://aqvenstudio.com
Project-URL: Repository, https://github.com/lastonoga/AQVEN
Project-URL: Issues, https://github.com/lastonoga/AQVEN/issues
Provides-Extra: anthropic
Provides-Extra: bedrock
Provides-Extra: cohere
Provides-Extra: google
Provides-Extra: groq
Provides-Extra: huggingface
Provides-Extra: mistral
Provides-Extra: xai
Description-Content-Type: text/markdown

# aqven

Engineering layer for reliable AI workflows. Workflows are files in your repository: YAML next to the Python
they call, compiled to an IR, executed with checkpoints, and checked before they run.

`aqven` carries Studio, the local browser interface, inside the distribution. Installing the package is enough
to create a project and open it — no Node.js toolchain is required.

```bash
uv tool install aqven
aqven new my_project
cd my_project
uv run aqven dev
```

`aqven new` creates the project from a template, installs its environment and generates its models.
`aqven dev` starts the project server and opens Studio. `aqven check` verifies a project statically and
simulates every flow without network access or tokens.

Documentation: https://aqvenstudio.com
