aqven 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aqven-0.0.0/PKG-INFO +76 -0
- aqven-0.0.0/README.md +20 -0
- aqven-0.0.0/pyproject.toml +78 -0
- aqven-0.0.0/pyproject.toml.orig +71 -0
- aqven-0.0.0/src/aqven/__init__.py +118 -0
- aqven-0.0.0/src/aqven/__main__.py +3 -0
- aqven-0.0.0/src/aqven/app/__init__.py +87 -0
- aqven-0.0.0/src/aqven/app/access.py +306 -0
- aqven-0.0.0/src/aqven/app/background.py +97 -0
- aqven-0.0.0/src/aqven/app/composition.py +160 -0
- aqven-0.0.0/src/aqven/app/dotenv_secrets.py +114 -0
- aqven-0.0.0/src/aqven/app/engine_host.py +45 -0
- aqven-0.0.0/src/aqven/app/environment.py +79 -0
- aqven-0.0.0/src/aqven/app/health.py +114 -0
- aqven-0.0.0/src/aqven/app/host_os.py +108 -0
- aqven-0.0.0/src/aqven/app/instance.py +167 -0
- aqven-0.0.0/src/aqven/app/local_app.py +273 -0
- aqven-0.0.0/src/aqven/app/locations.py +133 -0
- aqven-0.0.0/src/aqven/app/options.py +112 -0
- aqven-0.0.0/src/aqven/app/runtime.py +278 -0
- aqven-0.0.0/src/aqven/app/runtime_file.py +66 -0
- aqven-0.0.0/src/aqven/app/secret_declarations.py +108 -0
- aqven-0.0.0/src/aqven/app/secret_names.py +114 -0
- aqven-0.0.0/src/aqven/app/settings_store.py +141 -0
- aqven-0.0.0/src/aqven/app/settings_values.py +126 -0
- aqven-0.0.0/src/aqven/chat/__init__.py +46 -0
- aqven-0.0.0/src/aqven/chat/agent.py +20 -0
- aqven-0.0.0/src/aqven/chat/approvals.py +77 -0
- aqven-0.0.0/src/aqven/chat/backend_registry.py +23 -0
- aqven-0.0.0/src/aqven/chat/backend_selection.py +45 -0
- aqven-0.0.0/src/aqven/chat/builders.py +172 -0
- aqven-0.0.0/src/aqven/chat/claude_backend.py +145 -0
- aqven-0.0.0/src/aqven/chat/claude_cli.py +122 -0
- aqven-0.0.0/src/aqven/chat/claude_options.py +91 -0
- aqven-0.0.0/src/aqven/chat/claude_runner.py +265 -0
- aqven-0.0.0/src/aqven/chat/claude_runtime.py +47 -0
- aqven-0.0.0/src/aqven/chat/claude_wire.py +123 -0
- aqven-0.0.0/src/aqven/chat/codex_approvals.py +118 -0
- aqven-0.0.0/src/aqven/chat/codex_backend.py +181 -0
- aqven-0.0.0/src/aqven/chat/codex_normalizer.py +210 -0
- aqven-0.0.0/src/aqven/chat/codex_policy.py +55 -0
- aqven-0.0.0/src/aqven/chat/codex_runner.py +293 -0
- aqven-0.0.0/src/aqven/chat/codex_runtime.py +31 -0
- aqven-0.0.0/src/aqven/chat/env_guard.py +132 -0
- aqven-0.0.0/src/aqven/chat/errors.py +10 -0
- aqven-0.0.0/src/aqven/chat/feed.py +67 -0
- aqven-0.0.0/src/aqven/chat/journal.py +48 -0
- aqven-0.0.0/src/aqven/chat/mcp_config.py +33 -0
- aqven-0.0.0/src/aqven/chat/normalizer.py +410 -0
- aqven-0.0.0/src/aqven/chat/project_rules.py +9 -0
- aqven-0.0.0/src/aqven/chat/routes.py +32 -0
- aqven-0.0.0/src/aqven/chat/sqlite_journal.py +299 -0
- aqven-0.0.0/src/aqven/chat/testing.py +129 -0
- aqven-0.0.0/src/aqven/chat/tool_effects.py +104 -0
- aqven-0.0.0/src/aqven/chat/tool_names.py +20 -0
- aqven-0.0.0/src/aqven/chat/turn_cost.py +23 -0
- aqven-0.0.0/src/aqven/check/__init__.py +130 -0
- aqven-0.0.0/src/aqven/check/bindings.py +329 -0
- aqven-0.0.0/src/aqven/check/bounds.py +121 -0
- aqven-0.0.0/src/aqven/check/builders.py +83 -0
- aqven-0.0.0/src/aqven/check/capabilities.py +166 -0
- aqven-0.0.0/src/aqven/check/code.py +262 -0
- aqven-0.0.0/src/aqven/check/conditions.py +173 -0
- aqven-0.0.0/src/aqven/check/context.py +107 -0
- aqven-0.0.0/src/aqven/check/context_keys.py +57 -0
- aqven-0.0.0/src/aqven/check/control.py +51 -0
- aqven-0.0.0/src/aqven/check/display.py +84 -0
- aqven-0.0.0/src/aqven/check/dynamic.py +242 -0
- aqven-0.0.0/src/aqven/check/evals.py +105 -0
- aqven-0.0.0/src/aqven/check/flows.py +186 -0
- aqven-0.0.0/src/aqven/check/generated.py +116 -0
- aqven-0.0.0/src/aqven/check/graph.py +337 -0
- aqven-0.0.0/src/aqven/check/human.py +44 -0
- aqven-0.0.0/src/aqven/check/inferences.py +201 -0
- aqven-0.0.0/src/aqven/check/names.py +94 -0
- aqven-0.0.0/src/aqven/check/nodes.py +112 -0
- aqven-0.0.0/src/aqven/check/output_modes.py +257 -0
- aqven-0.0.0/src/aqven/check/policies.py +495 -0
- aqven-0.0.0/src/aqven/check/prompts.py +605 -0
- aqven-0.0.0/src/aqven/check/provenance.py +303 -0
- aqven-0.0.0/src/aqven/check/providers.py +162 -0
- aqven-0.0.0/src/aqven/check/refs.py +91 -0
- aqven-0.0.0/src/aqven/check/registry.py +191 -0
- aqven-0.0.0/src/aqven/check/report.py +22 -0
- aqven-0.0.0/src/aqven/check/resolver.py +128 -0
- aqven-0.0.0/src/aqven/check/schemas.py +193 -0
- aqven-0.0.0/src/aqven/check/scopes.py +511 -0
- aqven-0.0.0/src/aqven/check/secrets.py +100 -0
- aqven-0.0.0/src/aqven/check/shapes.py +216 -0
- aqven-0.0.0/src/aqven/check/simulation/__init__.py +192 -0
- aqven-0.0.0/src/aqven/check/simulation/cache.py +80 -0
- aqven-0.0.0/src/aqven/check/simulation/model.py +104 -0
- aqven-0.0.0/src/aqven/check/simulation/plan.py +218 -0
- aqven-0.0.0/src/aqven/check/simulation/regex.py +202 -0
- aqven-0.0.0/src/aqven/check/simulation/report.py +164 -0
- aqven-0.0.0/src/aqven/check/simulation/runner.py +223 -0
- aqven-0.0.0/src/aqven/check/simulation/values.py +296 -0
- aqven-0.0.0/src/aqven/check/templates.py +123 -0
- aqven-0.0.0/src/aqven/check/tool_args.py +175 -0
- aqven-0.0.0/src/aqven/check/typeinfo.py +59 -0
- aqven-0.0.0/src/aqven/check/types.py +189 -0
- aqven-0.0.0/src/aqven/cli.py +430 -0
- aqven-0.0.0/src/aqven/client/__init__.py +21 -0
- aqven-0.0.0/src/aqven/client/api.py +213 -0
- aqven-0.0.0/src/aqven/client/errors.py +60 -0
- aqven-0.0.0/src/aqven/client/events.py +41 -0
- aqven-0.0.0/src/aqven/client/ids.py +21 -0
- aqven-0.0.0/src/aqven/codegen.py +420 -0
- aqven-0.0.0/src/aqven/compiler/__init__.py +18 -0
- aqven-0.0.0/src/aqven/compiler/bindings.py +119 -0
- aqven-0.0.0/src/aqven/compiler/codes.py +32 -0
- aqven-0.0.0/src/aqven/compiler/context.py +55 -0
- aqven-0.0.0/src/aqven/compiler/errors.py +14 -0
- aqven-0.0.0/src/aqven/compiler/flows.py +33 -0
- aqven-0.0.0/src/aqven/compiler/nodes.py +255 -0
- aqven-0.0.0/src/aqven/compiler/plan.py +39 -0
- aqven-0.0.0/src/aqven/compiler/project.py +86 -0
- aqven-0.0.0/src/aqven/compiler/prompts.py +136 -0
- aqven-0.0.0/src/aqven/compiler/registry.py +210 -0
- aqven-0.0.0/src/aqven/compiler/schemas.py +38 -0
- aqven-0.0.0/src/aqven/console/__init__.py +0 -0
- aqven-0.0.0/src/aqven/console/command.py +44 -0
- aqven-0.0.0/src/aqven/console/evals.py +202 -0
- aqven-0.0.0/src/aqven/console/formats.py +6 -0
- aqven-0.0.0/src/aqven/console/llm_errors.py +39 -0
- aqven-0.0.0/src/aqven/console/mcp.py +19 -0
- aqven-0.0.0/src/aqven/console/models.py +314 -0
- aqven-0.0.0/src/aqven/console/new.py +285 -0
- aqven-0.0.0/src/aqven/console/project_env.py +20 -0
- aqven-0.0.0/src/aqven/console/project_template.py +132 -0
- aqven-0.0.0/src/aqven/console/prompt.py +161 -0
- aqven-0.0.0/src/aqven/console/run.py +242 -0
- aqven-0.0.0/src/aqven/console/secrets.py +124 -0
- aqven-0.0.0/src/aqven/console/serve.py +27 -0
- aqven-0.0.0/src/aqven/diagnostics.py +338 -0
- aqven-0.0.0/src/aqven/engine/__init__.py +85 -0
- aqven-0.0.0/src/aqven/engine/addressing.py +59 -0
- aqven-0.0.0/src/aqven/engine/allowed_set_view.py +23 -0
- aqven-0.0.0/src/aqven/engine/assembly/__init__.py +142 -0
- aqven-0.0.0/src/aqven/engine/assembly/approvals.py +48 -0
- aqven-0.0.0/src/aqven/engine/assembly/code.py +69 -0
- aqven-0.0.0/src/aqven/engine/assembly/models.py +196 -0
- aqven-0.0.0/src/aqven/engine/assembly/steps.py +49 -0
- aqven-0.0.0/src/aqven/engine/assembly/tools.py +107 -0
- aqven-0.0.0/src/aqven/engine/blobs.py +103 -0
- aqven-0.0.0/src/aqven/engine/branches.py +51 -0
- aqven-0.0.0/src/aqven/engine/config.py +53 -0
- aqven-0.0.0/src/aqven/engine/control/__init__.py +62 -0
- aqven-0.0.0/src/aqven/engine/control/binding.py +42 -0
- aqven-0.0.0/src/aqven/engine/control/children.py +88 -0
- aqven-0.0.0/src/aqven/engine/control/durable.py +65 -0
- aqven-0.0.0/src/aqven/engine/control/events.py +41 -0
- aqven-0.0.0/src/aqven/engine/control/loop.py +153 -0
- aqven-0.0.0/src/aqven/engine/control/mapping.py +133 -0
- aqven-0.0.0/src/aqven/engine/control/outcomes.py +68 -0
- aqven-0.0.0/src/aqven/engine/control/parallel.py +97 -0
- aqven-0.0.0/src/aqven/engine/display_template.py +18 -0
- aqven-0.0.0/src/aqven/engine/errors.py +48 -0
- aqven-0.0.0/src/aqven/engine/events.py +192 -0
- aqven-0.0.0/src/aqven/engine/executors/__init__.py +28 -0
- aqven-0.0.0/src/aqven/engine/executors/call.py +10 -0
- aqven-0.0.0/src/aqven/engine/executors/code.py +19 -0
- aqven-0.0.0/src/aqven/engine/executors/narrow.py +34 -0
- aqven-0.0.0/src/aqven/engine/executors/secrets.py +34 -0
- aqven-0.0.0/src/aqven/engine/executors/switch.py +74 -0
- aqven-0.0.0/src/aqven/engine/executors/tool.py +221 -0
- aqven-0.0.0/src/aqven/engine/extensions.py +82 -0
- aqven-0.0.0/src/aqven/engine/facade.py +526 -0
- aqven-0.0.0/src/aqven/engine/failures.py +43 -0
- aqven-0.0.0/src/aqven/engine/forking.py +101 -0
- aqven-0.0.0/src/aqven/engine/human/__init__.py +125 -0
- aqven-0.0.0/src/aqven/engine/human/answers.py +43 -0
- aqven-0.0.0/src/aqven/engine/human/approval.py +132 -0
- aqven-0.0.0/src/aqven/engine/human/dbos_adapters.py +144 -0
- aqven-0.0.0/src/aqven/engine/human/executor.py +63 -0
- aqven-0.0.0/src/aqven/engine/human/forms.py +112 -0
- aqven-0.0.0/src/aqven/engine/human/index.py +218 -0
- aqven-0.0.0/src/aqven/engine/human/journal.py +16 -0
- aqven-0.0.0/src/aqven/engine/human/keys.py +27 -0
- aqven-0.0.0/src/aqven/engine/human/outcomes.py +93 -0
- aqven-0.0.0/src/aqven/engine/human/records.py +163 -0
- aqven-0.0.0/src/aqven/engine/human/resume.py +203 -0
- aqven-0.0.0/src/aqven/engine/human/scripted.py +154 -0
- aqven-0.0.0/src/aqven/engine/human/wait_events.py +107 -0
- aqven-0.0.0/src/aqven/engine/human/waiter.py +193 -0
- aqven-0.0.0/src/aqven/engine/interpreter.py +635 -0
- aqven-0.0.0/src/aqven/engine/lifecycle.py +114 -0
- aqven-0.0.0/src/aqven/engine/listing.py +120 -0
- aqven-0.0.0/src/aqven/engine/llm/__init__.py +84 -0
- aqven-0.0.0/src/aqven/engine/llm/adapters.py +158 -0
- aqven-0.0.0/src/aqven/engine/llm/agents.py +265 -0
- aqven-0.0.0/src/aqven/engine/llm/allowed.py +288 -0
- aqven-0.0.0/src/aqven/engine/llm/checks.py +174 -0
- aqven-0.0.0/src/aqven/engine/llm/context.py +25 -0
- aqven-0.0.0/src/aqven/engine/llm/dynamic.py +86 -0
- aqven-0.0.0/src/aqven/engine/llm/errors.py +83 -0
- aqven-0.0.0/src/aqven/engine/llm/executor.py +450 -0
- aqven-0.0.0/src/aqven/engine/llm/failures.py +521 -0
- aqven-0.0.0/src/aqven/engine/llm/instructions.py +126 -0
- aqven-0.0.0/src/aqven/engine/llm/output.py +72 -0
- aqven-0.0.0/src/aqven/engine/llm/ports.py +68 -0
- aqven-0.0.0/src/aqven/engine/llm/probe.py +128 -0
- aqven-0.0.0/src/aqven/engine/llm/prompt_trace.py +66 -0
- aqven-0.0.0/src/aqven/engine/llm/prompts.py +263 -0
- aqven-0.0.0/src/aqven/engine/llm/readable.py +225 -0
- aqven-0.0.0/src/aqven/engine/llm/segments.py +97 -0
- aqven-0.0.0/src/aqven/engine/llm/streaming.py +232 -0
- aqven-0.0.0/src/aqven/engine/llm/telemetry.py +58 -0
- aqven-0.0.0/src/aqven/engine/llm/tools.py +235 -0
- aqven-0.0.0/src/aqven/engine/loading.py +126 -0
- aqven-0.0.0/src/aqven/engine/local.py +84 -0
- aqven-0.0.0/src/aqven/engine/overrides.py +11 -0
- aqven-0.0.0/src/aqven/engine/plans.py +99 -0
- aqven-0.0.0/src/aqven/engine/policies/__init__.py +27 -0
- aqven-0.0.0/src/aqven/engine/policies/codecs.py +44 -0
- aqven-0.0.0/src/aqven/engine/policies/errors.py +19 -0
- aqven-0.0.0/src/aqven/engine/policies/factory.py +99 -0
- aqven-0.0.0/src/aqven/engine/policies/loading.py +20 -0
- aqven-0.0.0/src/aqven/engine/policies/rules.py +124 -0
- aqven-0.0.0/src/aqven/engine/policies/signature.py +71 -0
- aqven-0.0.0/src/aqven/engine/presentation.py +308 -0
- aqven-0.0.0/src/aqven/engine/projection.py +231 -0
- aqven-0.0.0/src/aqven/engine/protocol.py +15 -0
- aqven-0.0.0/src/aqven/engine/reader.py +104 -0
- aqven-0.0.0/src/aqven/engine/registry.py +44 -0
- aqven-0.0.0/src/aqven/engine/request.py +121 -0
- aqven-0.0.0/src/aqven/engine/runtime.py +92 -0
- aqven-0.0.0/src/aqven/engine/selection.py +246 -0
- aqven-0.0.0/src/aqven/engine/steps.py +42 -0
- aqven-0.0.0/src/aqven/engine/values.py +154 -0
- aqven-0.0.0/src/aqven/evals/__init__.py +62 -0
- aqven-0.0.0/src/aqven/evals/flows.py +75 -0
- aqven-0.0.0/src/aqven/evals/gate.py +334 -0
- aqven-0.0.0/src/aqven/evals/plan.py +117 -0
- aqven-0.0.0/src/aqven/evals/records.py +109 -0
- aqven-0.0.0/src/aqven/evals/runner.py +463 -0
- aqven-0.0.0/src/aqven/evals/scoring.py +132 -0
- aqven-0.0.0/src/aqven/evals/statistics.py +118 -0
- aqven-0.0.0/src/aqven/evals/store.py +163 -0
- aqven-0.0.0/src/aqven/ir/__init__.py +161 -0
- aqven-0.0.0/src/aqven/ir/common.py +116 -0
- aqven-0.0.0/src/aqven/ir/hashing.py +41 -0
- aqven-0.0.0/src/aqven/ir/identity.py +153 -0
- aqven-0.0.0/src/aqven/ir/nodes.py +164 -0
- aqven-0.0.0/src/aqven/ir/plan.py +239 -0
- aqven-0.0.0/src/aqven/ir/registry.py +212 -0
- aqven-0.0.0/src/aqven/loader/__init__.py +80 -0
- aqven-0.0.0/src/aqven/loader/aliases.py +178 -0
- aqven-0.0.0/src/aqven/loader/index.py +281 -0
- aqven-0.0.0/src/aqven/loader/layout.py +137 -0
- aqven-0.0.0/src/aqven/loader/project.py +486 -0
- aqven-0.0.0/src/aqven/loader/strict_yaml.py +274 -0
- aqven-0.0.0/src/aqven/loader/validation.py +190 -0
- aqven-0.0.0/src/aqven/models/__init__.py +104 -0
- aqven-0.0.0/src/aqven/models/backoff.py +233 -0
- aqven-0.0.0/src/aqven/models/callsite.py +44 -0
- aqven-0.0.0/src/aqven/models/cassette.py +346 -0
- aqven-0.0.0/src/aqven/models/cassette_blobs.py +159 -0
- aqven-0.0.0/src/aqven/models/cassette_key.py +164 -0
- aqven-0.0.0/src/aqven/models/chain.py +145 -0
- aqven-0.0.0/src/aqven/models/declared.py +48 -0
- aqven-0.0.0/src/aqven/models/limiter.py +93 -0
- aqven-0.0.0/src/aqven/models/outcome.py +83 -0
- aqven-0.0.0/src/aqven/models/providers.py +95 -0
- aqven-0.0.0/src/aqven/models/redaction.py +240 -0
- aqven-0.0.0/src/aqven/models/streams.py +134 -0
- aqven-0.0.0/src/aqven/models/usage.py +114 -0
- aqven-0.0.0/src/aqven/policies/__init__.py +90 -0
- aqven-0.0.0/src/aqven/policies/contracts.py +136 -0
- aqven-0.0.0/src/aqven/policies/control.py +143 -0
- aqven-0.0.0/src/aqven/policies/evaluators.py +159 -0
- aqven-0.0.0/src/aqven/policies/paths.py +47 -0
- aqven-0.0.0/src/aqven/ports/__init__.py +185 -0
- aqven-0.0.0/src/aqven/ports/chat.py +252 -0
- aqven-0.0.0/src/aqven/ports/engine.py +119 -0
- aqven-0.0.0/src/aqven/ports/execution.py +208 -0
- aqven-0.0.0/src/aqven/ports/identity.py +49 -0
- aqven-0.0.0/src/aqven/ports/models.py +35 -0
- aqven-0.0.0/src/aqven/ports/settings.py +179 -0
- aqven-0.0.0/src/aqven/preview/__init__.py +34 -0
- aqven-0.0.0/src/aqven/preview/prompt.py +478 -0
- aqven-0.0.0/src/aqven/preview/render.py +107 -0
- aqven-0.0.0/src/aqven/preview/samples.py +181 -0
- aqven-0.0.0/src/aqven/py.typed +0 -0
- aqven-0.0.0/src/aqven/runtime/__init__.py +265 -0
- aqven-0.0.0/src/aqven/runtime/address.py +55 -0
- aqven-0.0.0/src/aqven/runtime/display_template.py +319 -0
- aqven-0.0.0/src/aqven/runtime/events.py +251 -0
- aqven-0.0.0/src/aqven/runtime/executions.py +158 -0
- aqven-0.0.0/src/aqven/runtime/human.py +76 -0
- aqven-0.0.0/src/aqven/runtime/options.py +107 -0
- aqven-0.0.0/src/aqven/runtime/overrides.py +69 -0
- aqven-0.0.0/src/aqven/runtime/presentation.py +165 -0
- aqven-0.0.0/src/aqven/runtime/project.py +225 -0
- aqven-0.0.0/src/aqven/runtime/replay.py +29 -0
- aqven-0.0.0/src/aqven/runtime/runs.py +159 -0
- aqven-0.0.0/src/aqven/runtime/steps.py +61 -0
- aqven-0.0.0/src/aqven/runtime/values.py +31 -0
- aqven-0.0.0/src/aqven/runtime/vocabulary.py +42 -0
- aqven-0.0.0/src/aqven/server/__init__.py +36 -0
- aqven-0.0.0/src/aqven/server/app.py +187 -0
- aqven-0.0.0/src/aqven/server/blobs.py +158 -0
- aqven-0.0.0/src/aqven/server/chat/__init__.py +20 -0
- aqven-0.0.0/src/aqven/server/chat/extension.py +42 -0
- aqven-0.0.0/src/aqven/server/chat/router.py +193 -0
- aqven-0.0.0/src/aqven/server/context.py +42 -0
- aqven-0.0.0/src/aqven/server/errors.py +207 -0
- aqven-0.0.0/src/aqven/server/mcp/__init__.py +86 -0
- aqven-0.0.0/src/aqven/server/mcp/bridge.py +161 -0
- aqven-0.0.0/src/aqven/server/mcp/catalog.py +143 -0
- aqven-0.0.0/src/aqven/server/mcp/check_tools.py +140 -0
- aqven-0.0.0/src/aqven/server/mcp/endpoint.py +113 -0
- aqven-0.0.0/src/aqven/server/mcp/patch_tools.py +53 -0
- aqven-0.0.0/src/aqven/server/mcp/paths.py +57 -0
- aqven-0.0.0/src/aqven/server/mcp/preview_tools.py +70 -0
- aqven-0.0.0/src/aqven/server/mcp/processes.py +94 -0
- aqven-0.0.0/src/aqven/server/mcp/project_tools.py +375 -0
- aqven-0.0.0/src/aqven/server/mcp/pyright_tool.py +191 -0
- aqven-0.0.0/src/aqven/server/mcp/pytest_tool.py +195 -0
- aqven-0.0.0/src/aqven/server/mcp/run_tools.py +213 -0
- aqven-0.0.0/src/aqven/server/openapi.py +114 -0
- aqven-0.0.0/src/aqven/server/resources.py +290 -0
- aqven-0.0.0/src/aqven/server/routes/__init__.py +0 -0
- aqven-0.0.0/src/aqven/server/routes/blobs.py +66 -0
- aqven-0.0.0/src/aqven/server/routes/evals.py +287 -0
- aqven-0.0.0/src/aqven/server/routes/events.py +40 -0
- aqven-0.0.0/src/aqven/server/routes/fallback.py +17 -0
- aqven-0.0.0/src/aqven/server/routes/flows.py +337 -0
- aqven-0.0.0/src/aqven/server/routes/meta.py +14 -0
- aqven-0.0.0/src/aqven/server/routes/project.py +102 -0
- aqven-0.0.0/src/aqven/server/routes/runs.py +154 -0
- aqven-0.0.0/src/aqven/server/routes/schemas.py +69 -0
- aqven-0.0.0/src/aqven/server/routes/settings.py +142 -0
- aqven-0.0.0/src/aqven/server/run_inputs.py +80 -0
- aqven-0.0.0/src/aqven/server/runtime_file.py +22 -0
- aqven-0.0.0/src/aqven/server/schemas.py +106 -0
- aqven-0.0.0/src/aqven/server/security.py +71 -0
- aqven-0.0.0/src/aqven/server/simulation.py +51 -0
- aqven-0.0.0/src/aqven/server/spec_channel.py +322 -0
- aqven-0.0.0/src/aqven/server/static/assets/canvas-BTdYCn3_.js +7 -0
- aqven-0.0.0/src/aqven/server/static/assets/canvas-DQ96W6iQ.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/chat-lIVUByco.js +59 -0
- aqven-0.0.0/src/aqven/server/static/assets/collapsible-CBqHVDal.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/datasets-CNIw5Ae5.js +2 -0
- aqven-0.0.0/src/aqven/server/static/assets/demo-DcxIsuDt.js +5 -0
- aqven-0.0.0/src/aqven/server/static/assets/evals-Dn5jokI2.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-cyrillic-ext-wght-normal-DjL33-gN.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-cyrillic-wght-normal-BEAKL7Jp.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-latin-ext-wght-normal-DC-KSUi6.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-latin-wght-normal-BgDaEnEv.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-cyrillic-ext-wght-normal-X_5orZeX.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-cyrillic-wght-normal-DiZS0aHC.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-latin-ext-wght-normal-Bwz-egvJ.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-latin-wght-normal-XN7g48iV.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-symbols2-wght-normal-CO5SzqOn.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-mono-vietnamese-wght-normal-DadHysG0.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/geist-vietnamese-wght-normal-6IgcOCM7.woff2 +0 -0
- aqven-0.0.0/src/aqven/server/static/assets/index-BH3Z7GPg.css +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/index-DsNUw-kD.js +12 -0
- aqven-0.0.0/src/aqven/server/static/assets/nodes-DE--fHms.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/plus-B4gWp1BK.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/project-DL5gwIWd.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/react-B69kfRf1.js +9 -0
- aqven-0.0.0/src/aqven/server/static/assets/review-BRB-FdI8.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/rolldown-runtime-qXqUbbKo.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/route-C9yJv2HJ.js +18 -0
- aqven-0.0.0/src/aqven/server/static/assets/runs-ETEhepce.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/settings-GyI-5KHZ.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/setup-DJfdehkP.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/setup-DLG6LItV.js +1 -0
- aqven-0.0.0/src/aqven/server/static/assets/studio-Di0uxM95.js +5 -0
- aqven-0.0.0/src/aqven/server/static/demo-media/clip.mp4 +0 -0
- aqven-0.0.0/src/aqven/server/static/demo-media/controller.jpg +0 -0
- aqven-0.0.0/src/aqven/server/static/demo-media/voice.wav +0 -0
- aqven-0.0.0/src/aqven/server/static/favicon.svg +1 -0
- aqven-0.0.0/src/aqven/server/static/index.html +19 -0
- aqven-0.0.0/src/aqven/server/static.py +65 -0
- aqven-0.0.0/src/aqven/server/views/__init__.py +0 -0
- aqven-0.0.0/src/aqven/server/views/common.py +87 -0
- aqven-0.0.0/src/aqven/server/views/dataset_batches.py +318 -0
- aqven-0.0.0/src/aqven/server/views/dataset_csv.py +706 -0
- aqven-0.0.0/src/aqven/server/views/dataset_csv_template.py +329 -0
- aqven-0.0.0/src/aqven/server/views/datasets.py +171 -0
- aqven-0.0.0/src/aqven/server/views/evals.py +229 -0
- aqven-0.0.0/src/aqven/server/views/files.py +147 -0
- aqven-0.0.0/src/aqven/server/views/flows.py +156 -0
- aqven-0.0.0/src/aqven/server/views/node_display_preview.py +66 -0
- aqven-0.0.0/src/aqven/server/views/nodes.py +403 -0
- aqven-0.0.0/src/aqven/server/views/preview.py +64 -0
- aqven-0.0.0/src/aqven/server/views/prompts.py +183 -0
- aqven-0.0.0/src/aqven/server/views/secrets.py +59 -0
- aqven-0.0.0/src/aqven/server/views/types.py +45 -0
- aqven-0.0.0/src/aqven/server/workspace.py +126 -0
- aqven-0.0.0/src/aqven/spec/__init__.py +529 -0
- aqven-0.0.0/src/aqven/spec/agent.py +103 -0
- aqven-0.0.0/src/aqven/spec/builder.py +489 -0
- aqven-0.0.0/src/aqven/spec/builtins.py +186 -0
- aqven-0.0.0/src/aqven/spec/common.py +36 -0
- aqven-0.0.0/src/aqven/spec/documents.py +41 -0
- aqven-0.0.0/src/aqven/spec/evals.py +97 -0
- aqven-0.0.0/src/aqven/spec/fields.py +55 -0
- aqven-0.0.0/src/aqven/spec/flow.py +45 -0
- aqven-0.0.0/src/aqven/spec/inference.py +93 -0
- aqven-0.0.0/src/aqven/spec/mcp.py +21 -0
- aqven-0.0.0/src/aqven/spec/modelgen.py +445 -0
- aqven-0.0.0/src/aqven/spec/names.py +176 -0
- aqven-0.0.0/src/aqven/spec/nodes.py +175 -0
- aqven-0.0.0/src/aqven/spec/policy.py +37 -0
- aqven-0.0.0/src/aqven/spec/profiles.py +129 -0
- aqven-0.0.0/src/aqven/spec/project.py +95 -0
- aqven-0.0.0/src/aqven/spec/prompts.py +30 -0
- aqven-0.0.0/src/aqven/spec/refs.py +179 -0
- aqven-0.0.0/src/aqven/spec/schema.py +34 -0
- aqven-0.0.0/src/aqven/spec/tool.py +61 -0
- aqven-0.0.0/src/aqven/spec/typeref.py +67 -0
- aqven-0.0.0/src/aqven/spec/types.py +73 -0
- aqven-0.0.0/src/aqven/templates/minimal/AGENTS.md.tmpl +106 -0
- aqven-0.0.0/src/aqven/templates/minimal/CLAUDE.md.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/__init__.py.tmpl +0 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/__main__.py.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/agents/assistant.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/app.py.tmpl +61 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/aqven.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/dot-env.example.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/flow.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/nodes/prepare/prepare.node.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/nodes/prepare/prepare.py.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/nodes/reply/reply.inference.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/nodes/reply/reply.node.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/flows/answer_question/nodes/reply/reply.prompt.md.tmpl +4 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/tools/count_words.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/tools/functions.py.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/types/enums/tone.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/types/records/answer.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/minimal/__package__/types/records/question.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/minimal/dot-claude/hooks/aqven_check.py.tmpl +68 -0
- aqven-0.0.0/src/aqven/templates/minimal/dot-claude/settings.json.tmpl +27 -0
- aqven-0.0.0/src/aqven/templates/minimal/dot-gitignore.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/minimal/dot-mcp.json.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/minimal/pyproject.toml.tmpl +40 -0
- aqven-0.0.0/src/aqven/templates/minimal/tests/test_answer_question.py.tmpl +37 -0
- aqven-0.0.0/src/aqven/templates/showcase/AGENTS.md.tmpl +109 -0
- aqven-0.0.0/src/aqven/templates/showcase/CLAUDE.md.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/__init__.py.tmpl +0 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/__main__.py.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/deepseek.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/gemini.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/gpt.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/llama.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/mistral.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/painter.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/qwen.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/researcher.yaml.tmpl +8 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/resolver/research_policy.inference.yaml.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/resolver/research_policy.prompt.md.tmpl +6 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/resolver/resolver.instructions.md.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/agents/resolver/resolver.yaml.tmpl +33 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/app.py.tmpl +66 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/aqven.yaml.tmpl +29 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/code/support_case.py.tmpl +70 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/datasets/support_case_cases.yaml.tmpl +129 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/datasets/support_case_csv_review.yaml.tmpl +52 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/datasets/support_case_csv_ui_demo.yaml.tmpl +52 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/datasets/support_case_multimodal_demo.yaml.tmpl +53 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/dot-env.example.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/dot-gitignore.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/evals/support_case/reply_cases.yaml.tmpl +104 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/evals/support_case/reply_quality.yaml.tmpl +63 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/flow.yaml.tmpl +36 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/aggregate/aggregate.node.yaml.tmpl +23 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/aggregate/aggregate.py.tmpl +28 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/decide/decide.node.yaml.tmpl +26 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/decide/tie_break.inference.yaml.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/decide/tie_break.node.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/decide/tie_break.prompt.md.tmpl +6 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/judges/deepseek.node.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/judges/judges.node.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/judges/judges.py.tmpl +24 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/judges/llama.node.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/judges/qwen.node.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/pick/pick.node.yaml.tmpl +32 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/judge_panel/nodes/pick/pick.py.tmpl +15 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/flow.yaml.tmpl +46 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/approvals/approvals.node.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/approvals/brand.node.yaml.tmpl +31 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/approvals/lead.node.yaml.tmpl +28 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/case_form/case_form.node.yaml.tmpl +15 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/case_form/case_form.py.tmpl +35 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/clip/clip.node.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/drafts/drafts.node.yaml.tmpl +19 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/drafts/gemini.node.yaml.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/drafts/gpt.node.yaml.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/drafts/mistral.node.yaml.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/finalize/finalize.node.yaml.tmpl +76 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/finalize/finalize.py.tmpl +71 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/illustrate/illustrate.inference.yaml.tmpl +24 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/illustrate/illustrate.input.display.liquid.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/illustrate/illustrate.node.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/illustrate/illustrate.output.display.liquid.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/illustrate/illustrate.py.tmpl +35 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/intent/escalate.node.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/intent/intent.node.yaml.tmpl +26 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/panel/panel.node.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/critique.inference.yaml.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/critique.node.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/critique.prompt.md.tmpl +27 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/critique.py.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/polish.node.yaml.tmpl +39 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.inference.yaml.tmpl +85 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.input.display.liquid.tmpl +80 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.node.yaml.tmpl +24 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.output.display.liquid.tmpl +20 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.prompt.md.tmpl +73 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.variants/lamp_guide/mains.md.tmpl +1 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.variants/lamp_guide/rechargeable.md.tmpl +1 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.variants/lamp_guide/smart_wifi.md.tmpl +1 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.variants/lamp_guide/smart_zigbee.md.tmpl +1 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/polish/revise.variants/lamp_guide/unknown.md.tmpl +1 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/prepare/prepare.node.yaml.tmpl +30 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/prepare/prepare.py.tmpl +85 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/extract.inference.yaml.tmpl +37 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/extract.node.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/extract.prompt.md.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/record.node.yaml.tmpl +20 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/record.py.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/validate.node.yaml.tmpl +24 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/record/validate.py.tmpl +100 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/route/resolve.inference.yaml.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/route/resolve.node.yaml.tmpl +20 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/route/resolve.prompt.md.tmpl +46 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/route/route.node.yaml.tmpl +31 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/search_kb/search_kb.node.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/tally/tally.node.yaml.tmpl +21 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/tally/tally.py.tmpl +23 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/to_record/to_record.node.yaml.tmpl +6 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/triage/triage.inference.yaml.tmpl +75 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/triage/triage.node.yaml.tmpl +26 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/triage/triage.prompt.md.tmpl +46 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/voice/voice.node.yaml.tmpl +10 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/vote/ballot.inference.yaml.tmpl +56 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/vote/ballot.node.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/vote/ballot.prompt.md.tmpl +28 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/flows/support_case/nodes/vote/vote.node.yaml.tmpl +15 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/fragments/brand_voice.md.tmpl +3 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/fragments/citation_rules.md.tmpl +3 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/fragments/judge_protocol.md.tmpl +3 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/fragments/safety_escalation.md.tmpl +2 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/fragments/untrusted_input.md.tmpl +2 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/mcp/helpdesk.yaml.tmpl +8 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/samples/answers.json.tmpl +43 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/samples/case_request.json.tmpl +41 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/samples/flow_strip_controller.jpg.tmpl +0 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/samples/invoice_LUM-20260903.pdf.tmpl +32 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/samples/support_case_multimodal_import.csv.tmpl +2 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/find_tickets.yaml.tmpl +7 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/functions.py.tmpl +171 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/issue_store_credit.yaml.tmpl +30 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/lookup_order.yaml.tmpl +29 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/render_clip.yaml.tmpl +33 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/search_kb.yaml.tmpl +31 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/tools/synthesize_voice.yaml.tmpl +23 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/agreement.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/approval_decision.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/cascade_tier.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/case_intent.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/case_status.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/channel.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/currency_code.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/customer_tier.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/defect_symptom.yaml.tmpl +17 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/delivery_damage.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/issue_severity.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/lamp_kind.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/marketplace.yaml.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/product_category.yaml.tmpl +15 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/reply_criterion.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/resolution_action.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/enums/vote_perspective.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/customer_id.yaml.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/kb_chunk_id.yaml.tmpl +6 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/order_id.yaml.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/policy_id.yaml.tmpl +7 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/signal_key.yaml.tmpl +7 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/ids/sku_id.yaml.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/case_outcome.yaml.tmpl +34 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/case_request.yaml.tmpl +41 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/citation.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/criterion_score.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/critique.yaml.tmpl +17 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/customer.yaml.tmpl +23 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/intent_ballot.yaml.tmpl +15 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/issue.yaml.tmpl +33 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/judge_verdict.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/kb_chunk.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/media_approval.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/money.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/observation.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/panel_outcome.yaml.tmpl +11 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/panel_request.yaml.tmpl +17 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/panel_verdict.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/policy.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/product_ref.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/reply_approval.yaml.tmpl +16 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/reply_draft.yaml.tmpl +13 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/reply_media.yaml.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/resolution.yaml.tmpl +18 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/records/signal_def.yaml.tmpl +12 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/unions/case_origin.yaml.tmpl +23 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/unions/case_record.yaml.tmpl +44 -0
- aqven-0.0.0/src/aqven/templates/showcase/__package__/types/values/score.yaml.tmpl +7 -0
- aqven-0.0.0/src/aqven/templates/showcase/dot-claude/hooks/aqven_check.py.tmpl +68 -0
- aqven-0.0.0/src/aqven/templates/showcase/dot-claude/settings.json.tmpl +27 -0
- aqven-0.0.0/src/aqven/templates/showcase/dot-gitignore.tmpl +5 -0
- aqven-0.0.0/src/aqven/templates/showcase/dot-mcp.json.tmpl +9 -0
- aqven-0.0.0/src/aqven/templates/showcase/pyproject.toml.tmpl +40 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/conftest.py.tmpl +14 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/main_probe.py.tmpl +28 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/support.py.tmpl +28 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/test_check.py.tmpl +98 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/test_illustrate_display.py.tmpl +78 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/test_main.py.tmpl +64 -0
- aqven-0.0.0/src/aqven/templates/showcase/tests/test_revise_display.py.tmpl +184 -0
- aqven-0.0.0/src/aqven/testing/__init__.py +69 -0
- aqven-0.0.0/src/aqven/testing/blobs.py +46 -0
- aqven-0.0.0/src/aqven/testing/engines.py +74 -0
- aqven-0.0.0/src/aqven/testing/human.py +132 -0
- aqven-0.0.0/src/aqven/testing/offline.py +77 -0
- aqven-0.0.0/src/aqven/testing/plugin.py +72 -0
- aqven-0.0.0/src/aqven/testing/providers.py +197 -0
- aqven-0.0.0/src/aqven/testing/workspace.py +20 -0
- aqven-0.0.0/src/aqven/views.py +67 -0
- aqven-0.0.0/src/aqven/write/__init__.py +120 -0
- aqven-0.0.0/src/aqven/write/agents.py +128 -0
- aqven-0.0.0/src/aqven/write/canonical.py +169 -0
- aqven-0.0.0/src/aqven/write/drafts.py +98 -0
- aqven-0.0.0/src/aqven/write/errors.py +81 -0
- aqven-0.0.0/src/aqven/write/flows.py +133 -0
- aqven-0.0.0/src/aqven/write/intents.py +53 -0
- aqven-0.0.0/src/aqven/write/lock.py +160 -0
- aqven-0.0.0/src/aqven/write/model.py +183 -0
- aqven-0.0.0/src/aqven/write/notices.py +95 -0
- aqven-0.0.0/src/aqven/write/ops.py +575 -0
- aqven-0.0.0/src/aqven/write/paths.py +117 -0
- aqven-0.0.0/src/aqven/write/prompts.py +61 -0
- aqven-0.0.0/src/aqven/write/rewrite.py +147 -0
- aqven-0.0.0/src/aqven/write/service.py +372 -0
- aqven-0.0.0/src/aqven/write/tree.py +120 -0
- aqven-0.0.0/src/aqven/write/txn.py +158 -0
- aqven-0.0.0/src/aqven/write/validation.py +127 -0
aqven-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: aqven
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Engineering layer for reliable AI workflows: files as the source of truth, a compiler, a checkpointed runtime and a local Studio.
|
|
5
|
+
Keywords: ai,llm,workflow,agents,evaluation,pydantic-ai
|
|
6
|
+
Classifier: Development Status :: 3 - Alpha
|
|
7
|
+
Classifier: Intended Audience :: Developers
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
10
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
11
|
+
Classifier: Typing :: Typed
|
|
12
|
+
Requires-Dist: aqven-llm==0.0.0
|
|
13
|
+
Requires-Dist: pydantic==2.13.5
|
|
14
|
+
Requires-Dist: ruamel-yaml==0.19.1
|
|
15
|
+
Requires-Dist: python-liquid==2.3.1
|
|
16
|
+
Requires-Dist: httpx2==2.13.0
|
|
17
|
+
Requires-Dist: pydantic-ai-slim[mcp]==2.43.0
|
|
18
|
+
Requires-Dist: pydantic-evals==2.43.0
|
|
19
|
+
Requires-Dist: dbos==2.31.1
|
|
20
|
+
Requires-Dist: fastapi==0.141.1
|
|
21
|
+
Requires-Dist: uvicorn==0.53.0
|
|
22
|
+
Requires-Dist: python-multipart==0.0.32
|
|
23
|
+
Requires-Dist: mcp==2.2.0
|
|
24
|
+
Requires-Dist: rfc8785==0.1.4
|
|
25
|
+
Requires-Dist: watchfiles==1.2.0
|
|
26
|
+
Requires-Dist: genai-prices==0.1.7
|
|
27
|
+
Requires-Dist: opentelemetry-sdk==1.44.0
|
|
28
|
+
Requires-Dist: opentelemetry-exporter-otlp-proto-http==1.44.0
|
|
29
|
+
Requires-Dist: claude-agent-sdk==0.2.154
|
|
30
|
+
Requires-Dist: openai-codex==0.147.0
|
|
31
|
+
Requires-Dist: httpx==0.28.1
|
|
32
|
+
Requires-Dist: tenacity==9.1.4
|
|
33
|
+
Requires-Dist: python-dotenv==1.2.3
|
|
34
|
+
Requires-Dist: aqven-llm[anthropic]==0.0.0 ; extra == 'anthropic'
|
|
35
|
+
Requires-Dist: aqven-llm[bedrock]==0.0.0 ; extra == 'bedrock'
|
|
36
|
+
Requires-Dist: aqven-llm[cohere]==0.0.0 ; extra == 'cohere'
|
|
37
|
+
Requires-Dist: aqven-llm[google]==0.0.0 ; extra == 'google'
|
|
38
|
+
Requires-Dist: aqven-llm[groq]==0.0.0 ; extra == 'groq'
|
|
39
|
+
Requires-Dist: aqven-llm[huggingface]==0.0.0 ; extra == 'huggingface'
|
|
40
|
+
Requires-Dist: aqven-llm[mistral]==0.0.0 ; extra == 'mistral'
|
|
41
|
+
Requires-Dist: aqven-llm[xai]==0.0.0 ; extra == 'xai'
|
|
42
|
+
Requires-Python: >=3.14, <3.15
|
|
43
|
+
Project-URL: Homepage, https://aqvenstudio.com
|
|
44
|
+
Project-URL: Documentation, https://aqvenstudio.com
|
|
45
|
+
Project-URL: Repository, https://github.com/lastonoga/AQVEN
|
|
46
|
+
Project-URL: Issues, https://github.com/lastonoga/AQVEN/issues
|
|
47
|
+
Provides-Extra: anthropic
|
|
48
|
+
Provides-Extra: bedrock
|
|
49
|
+
Provides-Extra: cohere
|
|
50
|
+
Provides-Extra: google
|
|
51
|
+
Provides-Extra: groq
|
|
52
|
+
Provides-Extra: huggingface
|
|
53
|
+
Provides-Extra: mistral
|
|
54
|
+
Provides-Extra: xai
|
|
55
|
+
Description-Content-Type: text/markdown
|
|
56
|
+
|
|
57
|
+
# aqven
|
|
58
|
+
|
|
59
|
+
Engineering layer for reliable AI workflows. Workflows are files in your repository: YAML next to the Python
|
|
60
|
+
they call, compiled to an IR, executed with checkpoints, and checked before they run.
|
|
61
|
+
|
|
62
|
+
`aqven` carries Studio, the local browser interface, inside the distribution. Installing the package is enough
|
|
63
|
+
to create a project and open it — no Node.js toolchain is required.
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
uv tool install aqven
|
|
67
|
+
aqven new my_project
|
|
68
|
+
cd my_project
|
|
69
|
+
uv run aqven dev
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
`aqven new` creates the project from a template, installs its environment and generates its models.
|
|
73
|
+
`aqven dev` starts the project server and opens Studio. `aqven check` verifies a project statically and
|
|
74
|
+
simulates every flow without network access or tokens.
|
|
75
|
+
|
|
76
|
+
Documentation: https://aqvenstudio.com
|
aqven-0.0.0/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# aqven
|
|
2
|
+
|
|
3
|
+
Engineering layer for reliable AI workflows. Workflows are files in your repository: YAML next to the Python
|
|
4
|
+
they call, compiled to an IR, executed with checkpoints, and checked before they run.
|
|
5
|
+
|
|
6
|
+
`aqven` carries Studio, the local browser interface, inside the distribution. Installing the package is enough
|
|
7
|
+
to create a project and open it — no Node.js toolchain is required.
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
uv tool install aqven
|
|
11
|
+
aqven new my_project
|
|
12
|
+
cd my_project
|
|
13
|
+
uv run aqven dev
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
`aqven new` creates the project from a template, installs its environment and generates its models.
|
|
17
|
+
`aqven dev` starts the project server and opens Studio. `aqven check` verifies a project statically and
|
|
18
|
+
simulates every flow without network access or tokens.
|
|
19
|
+
|
|
20
|
+
Documentation: https://aqvenstudio.com
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "aqven"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Engineering layer for reliable AI workflows: files as the source of truth, a compiler, a checkpointed runtime and a local Studio."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
keywords = [
|
|
7
|
+
"ai",
|
|
8
|
+
"llm",
|
|
9
|
+
"workflow",
|
|
10
|
+
"agents",
|
|
11
|
+
"evaluation",
|
|
12
|
+
"pydantic-ai",
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 3 - Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Programming Language :: Python :: 3.14",
|
|
19
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
20
|
+
"Typing :: Typed",
|
|
21
|
+
]
|
|
22
|
+
requires-python = ">=3.14,<3.15"
|
|
23
|
+
dependencies = [
|
|
24
|
+
"aqven-llm==0.0.0",
|
|
25
|
+
"pydantic==2.13.5",
|
|
26
|
+
"ruamel.yaml==0.19.1",
|
|
27
|
+
"python-liquid==2.3.1",
|
|
28
|
+
"httpx2==2.13.0",
|
|
29
|
+
"pydantic-ai-slim[mcp]==2.43.0",
|
|
30
|
+
"pydantic-evals==2.43.0",
|
|
31
|
+
"dbos==2.31.1",
|
|
32
|
+
"fastapi==0.141.1",
|
|
33
|
+
"uvicorn==0.53.0",
|
|
34
|
+
"python-multipart==0.0.32",
|
|
35
|
+
"mcp==2.2.0",
|
|
36
|
+
"rfc8785==0.1.4",
|
|
37
|
+
"watchfiles==1.2.0",
|
|
38
|
+
"genai-prices==0.1.7",
|
|
39
|
+
"opentelemetry-sdk==1.44.0",
|
|
40
|
+
"opentelemetry-exporter-otlp-proto-http==1.44.0",
|
|
41
|
+
"claude-agent-sdk==0.2.154",
|
|
42
|
+
"openai-codex==0.147.0",
|
|
43
|
+
"httpx==0.28.1",
|
|
44
|
+
"tenacity==9.1.4",
|
|
45
|
+
"python-dotenv==1.2.3",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[project.urls]
|
|
49
|
+
Homepage = "https://aqvenstudio.com"
|
|
50
|
+
Documentation = "https://aqvenstudio.com"
|
|
51
|
+
Repository = "https://github.com/lastonoga/AQVEN"
|
|
52
|
+
Issues = "https://github.com/lastonoga/AQVEN/issues"
|
|
53
|
+
|
|
54
|
+
[project.optional-dependencies]
|
|
55
|
+
anthropic = ["aqven-llm[anthropic]==0.0.0"]
|
|
56
|
+
bedrock = ["aqven-llm[bedrock]==0.0.0"]
|
|
57
|
+
cohere = ["aqven-llm[cohere]==0.0.0"]
|
|
58
|
+
google = ["aqven-llm[google]==0.0.0"]
|
|
59
|
+
groq = ["aqven-llm[groq]==0.0.0"]
|
|
60
|
+
huggingface = ["aqven-llm[huggingface]==0.0.0"]
|
|
61
|
+
mistral = ["aqven-llm[mistral]==0.0.0"]
|
|
62
|
+
xai = ["aqven-llm[xai]==0.0.0"]
|
|
63
|
+
|
|
64
|
+
[project.scripts]
|
|
65
|
+
aqven = "aqven.cli:run"
|
|
66
|
+
|
|
67
|
+
[project.entry-points.pytest11]
|
|
68
|
+
aqven = "aqven.testing.plugin"
|
|
69
|
+
|
|
70
|
+
[tool.uv.sources.aqven-llm]
|
|
71
|
+
workspace = true
|
|
72
|
+
|
|
73
|
+
[tool.pytest.ini_options]
|
|
74
|
+
testpaths = ["tests"]
|
|
75
|
+
|
|
76
|
+
[build-system]
|
|
77
|
+
requires = ["uv_build==0.12.15"]
|
|
78
|
+
build-backend = "uv_build"
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "aqven"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Engineering layer for reliable AI workflows: files as the source of truth, a compiler, a checkpointed runtime and a local Studio."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
keywords = ["ai", "llm", "workflow", "agents", "evaluation", "pydantic-ai"]
|
|
7
|
+
classifiers = [
|
|
8
|
+
"Development Status :: 3 - Alpha",
|
|
9
|
+
"Intended Audience :: Developers",
|
|
10
|
+
"Programming Language :: Python :: 3",
|
|
11
|
+
"Programming Language :: Python :: 3.14",
|
|
12
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
13
|
+
"Typing :: Typed",
|
|
14
|
+
]
|
|
15
|
+
requires-python = ">=3.14,<3.15"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"aqven-llm==0.0.0",
|
|
18
|
+
"pydantic==2.13.5",
|
|
19
|
+
"ruamel.yaml==0.19.1",
|
|
20
|
+
"python-liquid==2.3.1",
|
|
21
|
+
"httpx2==2.13.0",
|
|
22
|
+
"pydantic-ai-slim[mcp]==2.43.0",
|
|
23
|
+
"pydantic-evals==2.43.0",
|
|
24
|
+
"dbos==2.31.1",
|
|
25
|
+
"fastapi==0.141.1",
|
|
26
|
+
"uvicorn==0.53.0",
|
|
27
|
+
"python-multipart==0.0.32",
|
|
28
|
+
"mcp==2.2.0",
|
|
29
|
+
"rfc8785==0.1.4",
|
|
30
|
+
"watchfiles==1.2.0",
|
|
31
|
+
"genai-prices==0.1.7",
|
|
32
|
+
"opentelemetry-sdk==1.44.0",
|
|
33
|
+
"opentelemetry-exporter-otlp-proto-http==1.44.0",
|
|
34
|
+
"claude-agent-sdk==0.2.154",
|
|
35
|
+
"openai-codex==0.147.0",
|
|
36
|
+
"httpx==0.28.1",
|
|
37
|
+
"tenacity==9.1.4",
|
|
38
|
+
"python-dotenv==1.2.3",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[project.urls]
|
|
42
|
+
Homepage = "https://aqvenstudio.com"
|
|
43
|
+
Documentation = "https://aqvenstudio.com"
|
|
44
|
+
Repository = "https://github.com/lastonoga/AQVEN"
|
|
45
|
+
Issues = "https://github.com/lastonoga/AQVEN/issues"
|
|
46
|
+
|
|
47
|
+
[project.optional-dependencies]
|
|
48
|
+
anthropic = ["aqven-llm[anthropic]==0.0.0"]
|
|
49
|
+
bedrock = ["aqven-llm[bedrock]==0.0.0"]
|
|
50
|
+
cohere = ["aqven-llm[cohere]==0.0.0"]
|
|
51
|
+
google = ["aqven-llm[google]==0.0.0"]
|
|
52
|
+
groq = ["aqven-llm[groq]==0.0.0"]
|
|
53
|
+
huggingface = ["aqven-llm[huggingface]==0.0.0"]
|
|
54
|
+
mistral = ["aqven-llm[mistral]==0.0.0"]
|
|
55
|
+
xai = ["aqven-llm[xai]==0.0.0"]
|
|
56
|
+
|
|
57
|
+
[project.scripts]
|
|
58
|
+
aqven = "aqven.cli:run"
|
|
59
|
+
|
|
60
|
+
[project.entry-points.pytest11]
|
|
61
|
+
aqven = "aqven.testing.plugin"
|
|
62
|
+
|
|
63
|
+
[tool.uv.sources]
|
|
64
|
+
aqven-llm = { workspace = true }
|
|
65
|
+
|
|
66
|
+
[build-system]
|
|
67
|
+
requires = ["uv_build==0.12.15"]
|
|
68
|
+
build-backend = "uv_build"
|
|
69
|
+
|
|
70
|
+
[tool.pytest.ini_options]
|
|
71
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from importlib import import_module
|
|
3
|
+
from typing import TYPE_CHECKING, Final
|
|
4
|
+
|
|
5
|
+
if TYPE_CHECKING:
|
|
6
|
+
from aqven.app import (
|
|
7
|
+
AppAccess,
|
|
8
|
+
LocalAppOptions,
|
|
9
|
+
LocalTokenAccess,
|
|
10
|
+
RuntimeSettings,
|
|
11
|
+
create_local_app,
|
|
12
|
+
create_mcp_server,
|
|
13
|
+
load_project_env,
|
|
14
|
+
local_app_lifespan,
|
|
15
|
+
runtime_settings,
|
|
16
|
+
)
|
|
17
|
+
from aqven.check import CheckReport, check_project
|
|
18
|
+
from aqven.client import AqvenClient
|
|
19
|
+
from aqven.runtime import (
|
|
20
|
+
CancelRequest,
|
|
21
|
+
ExecutionAddress,
|
|
22
|
+
FlowHandle,
|
|
23
|
+
HumanWait,
|
|
24
|
+
HumanWaitDetail,
|
|
25
|
+
Project,
|
|
26
|
+
ProjectInvalid,
|
|
27
|
+
ResumeRequest,
|
|
28
|
+
ResumeResult,
|
|
29
|
+
Run,
|
|
30
|
+
RunContext,
|
|
31
|
+
RunEvent,
|
|
32
|
+
RunId,
|
|
33
|
+
RunOptions,
|
|
34
|
+
RunResult,
|
|
35
|
+
node_address,
|
|
36
|
+
)
|
|
37
|
+
from aqven.server import ServerOptions, create_app, export_openapi, openapi_text
|
|
38
|
+
|
|
39
|
+
__all__ = [
|
|
40
|
+
"AppAccess",
|
|
41
|
+
"AqvenClient",
|
|
42
|
+
"CancelRequest",
|
|
43
|
+
"CheckReport",
|
|
44
|
+
"ExecutionAddress",
|
|
45
|
+
"FlowHandle",
|
|
46
|
+
"HumanWait",
|
|
47
|
+
"HumanWaitDetail",
|
|
48
|
+
"LocalAppOptions",
|
|
49
|
+
"LocalTokenAccess",
|
|
50
|
+
"Project",
|
|
51
|
+
"ProjectInvalid",
|
|
52
|
+
"ResumeRequest",
|
|
53
|
+
"ResumeResult",
|
|
54
|
+
"Run",
|
|
55
|
+
"RunContext",
|
|
56
|
+
"RunEvent",
|
|
57
|
+
"RunId",
|
|
58
|
+
"RunOptions",
|
|
59
|
+
"RunResult",
|
|
60
|
+
"RuntimeSettings",
|
|
61
|
+
"ServerOptions",
|
|
62
|
+
"check_project",
|
|
63
|
+
"create_app",
|
|
64
|
+
"create_local_app",
|
|
65
|
+
"create_mcp_server",
|
|
66
|
+
"export_openapi",
|
|
67
|
+
"load_project_env",
|
|
68
|
+
"local_app_lifespan",
|
|
69
|
+
"node_address",
|
|
70
|
+
"openapi_text",
|
|
71
|
+
"runtime_settings",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
PUBLIC_MODULES: Final[Mapping[str, str]] = {
|
|
75
|
+
"AppAccess": "aqven.app",
|
|
76
|
+
"AqvenClient": "aqven.client",
|
|
77
|
+
"CancelRequest": "aqven.runtime",
|
|
78
|
+
"CheckReport": "aqven.check",
|
|
79
|
+
"ExecutionAddress": "aqven.runtime",
|
|
80
|
+
"FlowHandle": "aqven.runtime",
|
|
81
|
+
"HumanWait": "aqven.runtime",
|
|
82
|
+
"HumanWaitDetail": "aqven.runtime",
|
|
83
|
+
"LocalAppOptions": "aqven.app",
|
|
84
|
+
"LocalTokenAccess": "aqven.app",
|
|
85
|
+
"Project": "aqven.runtime",
|
|
86
|
+
"ProjectInvalid": "aqven.runtime",
|
|
87
|
+
"ResumeRequest": "aqven.runtime",
|
|
88
|
+
"ResumeResult": "aqven.runtime",
|
|
89
|
+
"Run": "aqven.runtime",
|
|
90
|
+
"RunContext": "aqven.runtime",
|
|
91
|
+
"RunEvent": "aqven.runtime",
|
|
92
|
+
"RunId": "aqven.runtime",
|
|
93
|
+
"RunOptions": "aqven.runtime",
|
|
94
|
+
"RunResult": "aqven.runtime",
|
|
95
|
+
"RuntimeSettings": "aqven.app",
|
|
96
|
+
"ServerOptions": "aqven.server",
|
|
97
|
+
"check_project": "aqven.check",
|
|
98
|
+
"create_app": "aqven.server",
|
|
99
|
+
"create_local_app": "aqven.app",
|
|
100
|
+
"create_mcp_server": "aqven.app",
|
|
101
|
+
"export_openapi": "aqven.server",
|
|
102
|
+
"load_project_env": "aqven.app",
|
|
103
|
+
"local_app_lifespan": "aqven.app",
|
|
104
|
+
"node_address": "aqven.runtime",
|
|
105
|
+
"openapi_text": "aqven.server",
|
|
106
|
+
"runtime_settings": "aqven.app",
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
def __getattr__(name: str) -> object:
|
|
111
|
+
module = PUBLIC_MODULES.get(name)
|
|
112
|
+
if module is None:
|
|
113
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
|
114
|
+
return getattr(import_module(module), name)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
def __dir__() -> list[str]:
|
|
118
|
+
return sorted(__all__)
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
from collections.abc import Mapping
|
|
2
|
+
from importlib import import_module
|
|
3
|
+
from typing import TYPE_CHECKING, Final
|
|
4
|
+
|
|
5
|
+
if TYPE_CHECKING:
|
|
6
|
+
from aqven.app.composition import ServerApplicationFactory, StudioFeatures, studio_server
|
|
7
|
+
from aqven.app.dotenv_secrets import load_project_env
|
|
8
|
+
from aqven.app.environment import (
|
|
9
|
+
AQVEN_HOST,
|
|
10
|
+
AQVEN_OPEN_BROWSER,
|
|
11
|
+
AQVEN_PORT,
|
|
12
|
+
AQVEN_STUDIO,
|
|
13
|
+
DEFAULT_PORT,
|
|
14
|
+
LOOPBACK_HOST,
|
|
15
|
+
InvalidRuntimeSetting,
|
|
16
|
+
RuntimeSettings,
|
|
17
|
+
runtime_settings,
|
|
18
|
+
)
|
|
19
|
+
from aqven.app.local_app import (
|
|
20
|
+
AppAccess,
|
|
21
|
+
DeferredEngine,
|
|
22
|
+
LocalAppOptions,
|
|
23
|
+
LocalTokenAccess,
|
|
24
|
+
create_local_app,
|
|
25
|
+
create_mcp_server,
|
|
26
|
+
local_app_lifespan,
|
|
27
|
+
)
|
|
28
|
+
from aqven.app.options import ServerOptions
|
|
29
|
+
|
|
30
|
+
__all__ = [
|
|
31
|
+
"AQVEN_HOST",
|
|
32
|
+
"AQVEN_OPEN_BROWSER",
|
|
33
|
+
"AQVEN_PORT",
|
|
34
|
+
"AQVEN_STUDIO",
|
|
35
|
+
"DEFAULT_PORT",
|
|
36
|
+
"LOOPBACK_HOST",
|
|
37
|
+
"AppAccess",
|
|
38
|
+
"DeferredEngine",
|
|
39
|
+
"InvalidRuntimeSetting",
|
|
40
|
+
"LocalAppOptions",
|
|
41
|
+
"LocalTokenAccess",
|
|
42
|
+
"RuntimeSettings",
|
|
43
|
+
"ServerApplicationFactory",
|
|
44
|
+
"ServerOptions",
|
|
45
|
+
"StudioFeatures",
|
|
46
|
+
"create_local_app",
|
|
47
|
+
"create_mcp_server",
|
|
48
|
+
"load_project_env",
|
|
49
|
+
"local_app_lifespan",
|
|
50
|
+
"runtime_settings",
|
|
51
|
+
"studio_server",
|
|
52
|
+
]
|
|
53
|
+
|
|
54
|
+
PUBLIC_MODULES: Final[Mapping[str, str]] = {
|
|
55
|
+
"AQVEN_HOST": "aqven.app.environment",
|
|
56
|
+
"AQVEN_OPEN_BROWSER": "aqven.app.environment",
|
|
57
|
+
"AQVEN_PORT": "aqven.app.environment",
|
|
58
|
+
"AQVEN_STUDIO": "aqven.app.environment",
|
|
59
|
+
"DEFAULT_PORT": "aqven.app.environment",
|
|
60
|
+
"LOOPBACK_HOST": "aqven.app.environment",
|
|
61
|
+
"AppAccess": "aqven.app.local_app",
|
|
62
|
+
"DeferredEngine": "aqven.app.local_app",
|
|
63
|
+
"InvalidRuntimeSetting": "aqven.app.environment",
|
|
64
|
+
"LocalAppOptions": "aqven.app.local_app",
|
|
65
|
+
"LocalTokenAccess": "aqven.app.local_app",
|
|
66
|
+
"RuntimeSettings": "aqven.app.environment",
|
|
67
|
+
"ServerApplicationFactory": "aqven.app.composition",
|
|
68
|
+
"ServerOptions": "aqven.app.options",
|
|
69
|
+
"StudioFeatures": "aqven.app.composition",
|
|
70
|
+
"create_local_app": "aqven.app.local_app",
|
|
71
|
+
"create_mcp_server": "aqven.app.local_app",
|
|
72
|
+
"load_project_env": "aqven.app.dotenv_secrets",
|
|
73
|
+
"local_app_lifespan": "aqven.app.local_app",
|
|
74
|
+
"runtime_settings": "aqven.app.environment",
|
|
75
|
+
"studio_server": "aqven.app.composition",
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
def __getattr__(name: str) -> object:
|
|
80
|
+
module = PUBLIC_MODULES.get(name)
|
|
81
|
+
if module is None:
|
|
82
|
+
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
|
|
83
|
+
return getattr(import_module(module), name)
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
def __dir__() -> list[str]:
|
|
87
|
+
return sorted(__all__)
|