traigent 0.14.3__tar.gz → 0.16.0.dev0__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.
- {traigent-0.14.3 → traigent-0.16.0.dev0}/CHANGELOG.md +9 -10
- {traigent-0.14.3/traigent.egg-info → traigent-0.16.0.dev0}/PKG-INFO +20 -17
- {traigent-0.14.3 → traigent-0.16.0.dev0}/README.md +19 -16
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/README.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/complete-function-specification.md +15 -22
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/decorator-reference.md +16 -19
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/telemetry.md +36 -35
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/ARCHITECTURE.md +19 -23
- traigent-0.16.0.dev0/docs/architecture/execution_mode_follow_up.md +85 -0
- {traigent-0.14.3/docs/traceability → traigent-0.16.0.dev0/docs}/concepts/composite-knobs.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/API_PATTERNS.md +9 -20
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/LEARNING_ROADMAP.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/QUICK_REFERENCE.md +6 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/fake-completion-tracking.md +4 -6
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/mcp-server.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/GETTING_STARTED.md +13 -14
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/minimal-integration.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/testing.md +6 -6
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/evaluation.md +1 -1
- traigent-0.16.0.dev0/docs/guides/execution-mode-migration.md +34 -0
- traigent-0.16.0.dev0/docs/guides/execution-modes.md +97 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/hybrid-mode-api-contract.md +2 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/hybrid-mode-client-guide.md +13 -9
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/testing/CREATIVE_STRESS_TESTING.md +1 -1
- {traigent-0.14.3/docs → traigent-0.16.0.dev0/docs/traceability}/concepts/composite-knobs.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/README.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/agent_optimization.md +2 -2
- traigent-0.16.0.dev0/docs/user-guide/choosing_optimization_model.md +95 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/interactive_optimization.md +4 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/optuna_integration.md +14 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/walkthrough.md +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/pyproject.toml +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/__init__.py +27 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/__init__.py +16 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/config_builder.py +29 -82
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/decorators.py +443 -230
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/parameter_validator.py +48 -15
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/auth_commands.py +10 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/function_discovery.py +21 -14
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/local_commands.py +85 -43
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/main.py +79 -11
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/optimization_validator.py +37 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/sync_commands.py +6 -6
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/api_operations.py +64 -5
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/auth.py +56 -24
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/backend_client.py +56 -19
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/backend_components.py +5 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/benchmark_client.py +8 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/client.py +71 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/dataset_converter.py +57 -10
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/optimizer_client.py +15 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/password_auth_handler.py +5 -6
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/resilient_client.py +6 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/session_operations.py +58 -9
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/sync_manager.py +97 -9
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/token_manager.py +41 -18
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/trial_operations.py +14 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/__init__.py +29 -0
- traigent-0.16.0.dev0/traigent/config/types.py +1117 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/backend_session_manager.py +161 -23
- traigent-0.16.0.dev0/traigent/core/execution_policy_runtime.py +294 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/optimization_pipeline.py +21 -5
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/optimized_function.py +194 -48
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/orchestrator.py +219 -30
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/orchestrator_helpers.py +7 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/session_types.py +15 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/trial_lifecycle.py +29 -5
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/base.py +15 -36
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/local.py +21 -20
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/anthropic.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/aws.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/azure.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/gcp.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/gemini.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/groq.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/litellm_any.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/openai.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/openrouter.py +1 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__main__.py +3 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/quickstart/_env.py +6 -11
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/slow_update.py +3 -2
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/splits.py +5 -3
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/interactive_optimizer.py +27 -1
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/credentials.py +8 -4
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/input_validation.py +5 -7
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/traigent_client.py +174 -43
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/env_config.py +5 -3
- {traigent-0.14.3 → traigent-0.16.0.dev0/traigent.egg-info}/PKG-INFO +20 -17
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent.egg-info/SOURCES.txt +2 -1
- traigent-0.14.3/docs/architecture/execution_mode_follow_up.md +0 -61
- traigent-0.14.3/docs/guides/execution-modes.md +0 -88
- traigent-0.14.3/docs/user-guide/choosing_optimization_model.md +0 -276
- traigent-0.14.3/traigent/config/types.py +0 -639
- traigent-0.14.3/traigent/generation/skill_train/_deterministic_indices.py +0 -33
- {traigent-0.14.3 → traigent-0.16.0.dev0}/COMMERCIAL-LICENSE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/CONTRIBUTING.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/CONTRIBUTOR-LICENSING.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/DISCLAIMER.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/LICENSE +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/MANIFEST.in +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/NOTICE +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/SECURITY.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/LOCAL_CI_GATE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/SYNC_MAP.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/agent-skill.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/enterprise-beta-api.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/interactive_optimizer.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/thread-pool-examples.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/cost-architecture-validation.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/integrations-inventory.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/plugin_architecture.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/project-structure.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/architecture/stop_conditions.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/concepts/composite-knob-ir.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/concepts/guided-generation.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/ADDING_NEW_INTEGRATIONS.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/CODE_OF_CONDUCT.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/CONTRIBUTING.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/EXAMPLE_TEMPLATE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/SECURITY.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/aikido_triage.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/code_review_instructions.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/contributing/test-quality-guide.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/demos/DEMO_VIDEO_GUIDE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/demos/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/START_HERE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/examples/TROUBLESHOOTING.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/feature_matrices/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/authentication.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/constraint-dsl.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/dataflow-detection.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/framework_override_enhanced_features.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/observability-spans.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/onboarding.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/prompt_management.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/recommendations.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/safety-gates.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/seamless_injection.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/strategy-presets.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/features/strict_metrics_nulls.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/README.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/installation.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/getting-started/portal-dev-laptop-agent.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/VSCODE_RESTART_GUIDE.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/js-bridge.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/llm_plugin_migration_guide.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/parallel-configuration.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/guides/secrets_management.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/operations/azure_openai.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/operations/bedrock.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/operations/google_gemini.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/security/trust_model.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/traceability/concepts/composite-knob-ir.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/traceability/concepts/guided-generation.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/traceability/schema.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/traceability/tagging_tracking.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/traceability/taxonomy_reference.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/tvl/CONSTRAINT_EXPRESSIONS.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/configuration-spaces.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/evaluation_guide.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/injection_modes.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/docs/user-guide/tuned_variables.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-all.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-analytics.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-bayesian.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-chroma.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-dev.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-hybrid.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-integrations.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-security.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements-test.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/requirements/requirements.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/setup.cfg +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/_version.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/adapters/execution_adapter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/admin/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/admin/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/admin/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/admin/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/agents/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/agents/config_mapper.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/agents/executor.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/agents/platforms.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/agents/specification_generator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/anomaly.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/cost_optimization.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/example_insights.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/intelligence.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/meta_learning.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/next_steps.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/predictive.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/analytics/scheduling.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/agent_inference.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/config_space.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/constraint_builders.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/constraints.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/functions.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/parameter_ranges.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/safety.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/strategy_presets.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/api/validation_protocol.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/detect_tvars_command.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/generate_config_command.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/hooks_commands.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/next_steps_command.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/onboard_commands.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/playbook_commands.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cli/validation_types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/_aiohttp_compat.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/agent_dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/api_key_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/async_batch_transport.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/backend_bridges.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/backend_synchronizer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/billing.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/cloud_operations.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/credential_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/credential_resolver.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/event_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/governance.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/integration_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/models.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/privacy_operations.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/production_mcp_client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/remote_guidance.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/service.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/session_types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/sessions.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/subset_selection.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/trial_tracker.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/url_security.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/cloud/validators.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/api_keys.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/ast_transformer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/backend_config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/context.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/feature_flags.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/models.yaml +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/parallel.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/project.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/providers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/runtime_injector.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/seamless_injection.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/seamless_optuna_adapter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config/tenant.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/agent_classifier.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/apply.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_catalog_entry_schema.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_observation_schema.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_value_recommendation_schema.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/tvar_catalog.v1.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/catalog.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/llm_backend.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/pipeline.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/presets/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/presets/agent_type_catalog.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/presets/benchmark_catalog.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/presets/constraint_templates.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/presets/range_presets.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/recommendations.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/benchmarks.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/objectives.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/safety_constraints.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/structural_constraints.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_ranges.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_recommendations.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/config_generator/types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/best_config_runtime.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/cache_policy.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/ci_approval.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/config_builder.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/config_state_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/constants.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/cost_enforcement.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/cost_estimator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/evaluator_wrapper.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/exception_handler.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/license.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/llm_processor.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/logger_facade.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/mandatory_metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/meta_types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/metadata_helpers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/metric_registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/metrics_aggregator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/namespace.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/objectives.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/parallel_execution_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/progress_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/pruning_progress_tracker.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/refactoring_utils.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/result_selection.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/sample_budget.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/samplers/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/samplers/random_sampler.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/session_context.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/stat_significance.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/stop_condition_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/stop_conditions.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/trace_env.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/tracing.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/trial_context.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/trial_result_factory.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/types_ext.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/utils.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core/workflow_trace_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core_metrics/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core_metrics/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core_metrics/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/core_metrics/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/effectuation/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/effectuation/contracts.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/framework_param.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/self_consistency.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluation/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluation/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluation/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluation/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/metric_eval_catalog.v1.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/schemas/metric_eval_catalog_entry_schema.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/catalog_loader.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/dataset_registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/hybrid_api.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/metrics_tracker.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/evaluators/recommendations.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/_bootstrap.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/_demo.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/manifest.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/providers/qa_samples.jsonl +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/quickstart/qa_samples.jsonl +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/examples/tutorial_bootstrap.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/backend_provider.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/example_synth.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/llm_provider.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/loop.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/models.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/options.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/prompt_rewriter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/artifacts.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/buffer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/document.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/edits.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/prompts.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/reflection.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/schedule.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer_result.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/generation/validators.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/guaranteed_modes.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hooks/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hooks/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hooks/installer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hooks/validator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/http_transport.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/lifecycle.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/mcp_transport.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/protocol.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/hybrid/transport.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/activation.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/base_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/batch_wrapper.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/bedrock_client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/dspy_adapter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/framework_override.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langchain/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langchain/handler.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/callback.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/tracker.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/anthropic_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/azure_openai_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/base_llm_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/bedrock_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/cohere_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/gemini_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/huggingface_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/litellm_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/llamaindex_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/mistral_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/mappings.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/anthropic_discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/azure_discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/cache.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/gemini_discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/mistral_discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/openai_discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/observability/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/observability/mlflow.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/observability/wandb.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/observability/workflow_traces.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/plugin_registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/providers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/_types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/handler.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/message_coercion.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/mock_adapter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/parameter_normalizer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/response_wrapper.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/validation.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/utils/version_compat.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/chromadb_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/pinecone_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/weaviate_plugin.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/integrations/wrappers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/invokers/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/invokers/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/invokers/batch.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/invokers/local.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/invokers/streaming.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/adapters.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/bindings.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/canonical.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/cascade.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/certificates.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/composites.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/kinds.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/patterns.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/resolution.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/resolver.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/runtime.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/signals.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/knobs/telemetry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/mcp/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/mcp/server.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/mcp/tools.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/agent_metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/content_features.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/deepeval_metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/ragas_metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/metrics/registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/agent_spans.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/decorators.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/observability/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/batch_optimizers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/benchmarking.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/cloud_optimizer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/grid.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_checkpoint.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_utils.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/pruners.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/random.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/remote.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/remote_services.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/results.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/optimizers/service_registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/loader.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/model.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/scaffold.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/schemas/agent_playbook_schema.json +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/staleness.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/playbook/validator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/plugins/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/plugins/registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/projects/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/projects/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/projects/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/projects/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/prompts/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/prompts/client.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/prompts/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/prompts/dtos.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/providers/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/providers/validation.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/py.typed +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/reporting/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/reporting/example_map.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/audit.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/helpers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/mfa.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/models.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/oidc.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/saml.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/sms.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/auth/totp.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/config.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/crypto_utils.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/deployment.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/encryption.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/enterprise.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/headers.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/jwt_validator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/rate_limiter.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/redaction.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/session_manager.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/security/tenant.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/convergence-patterns.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/optimization-result-api.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/constraints.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/parameter-types.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/error-reference.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/logging-config.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/mock-mode.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/evaluation-options.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/execution-modes.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/injection-modes.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/dspy.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/langchain.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/litellm.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/environment-variables.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/installation-extras.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/SKILL.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/algorithms.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/cost-management.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/parallel-config.md +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/storage/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/storage/local_storage.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/telemetry/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/telemetry/optuna_metrics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/testing/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/traigent_integration.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/dataflow_strategy.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_strategies.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_types.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/detector.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/discovery.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/observation.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tuned_variables/py.typed +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/__main__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/models.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/objectives.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/options.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/promotion_gate.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/registry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/spec_loader.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/spec_validator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/tvl/statistics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/batch_optimizer_utils.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/batch_processing.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/callbacks.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/console.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/constraints.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/cost_calculator.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/diagnostics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/error_handler.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/example_id.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/exceptions.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/file_versioning.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/function_identity.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/hashing.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/importance.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/incentives.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/insights.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/langchain_interceptor.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/litellm_interceptor.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/llm_response_parsing.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/local_analytics.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/logging.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/multi_objective.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/numpy_compat.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/objectives.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/optimization_analyzer.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/optimization_logger.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/persistence.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/reproducibility.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/results_table.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/retry.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/secure_path.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/url_security.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/user_prompts.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/utils/validation.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/visualization/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/visualization/plots.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/wrapper/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/wrapper/errors.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/wrapper/server.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent/wrapper/service.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent.egg-info/dependency_links.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent.egg-info/entry_points.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent.egg-info/requires.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent.egg-info/top_level.txt +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent_validation/__init__.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent_validation/base.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent_validation/plugins.py +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent_validation/py.typed +0 -0
- {traigent-0.14.3 → traigent-0.16.0.dev0}/traigent_validation/validators.py +0 -0
|
@@ -4,18 +4,17 @@ All notable changes to Traigent SDK are documented in this file.
|
|
|
4
4
|
|
|
5
5
|
Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
6
|
|
|
7
|
-
## [
|
|
7
|
+
## [Unreleased]
|
|
8
8
|
|
|
9
|
-
###
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Security
|
|
14
|
-
- Addressed scoped Aikido security findings. (#1374)
|
|
9
|
+
### Added
|
|
10
|
+
- Added a no-content-egress cloud-brain canary test that captures serialized
|
|
11
|
+
session, next-trial, metrics, and finalize payloads and asserts dataset
|
|
12
|
+
example content never crosses the backend boundary.
|
|
15
13
|
|
|
16
|
-
###
|
|
17
|
-
-
|
|
18
|
-
`
|
|
14
|
+
### Changed
|
|
15
|
+
- Rewrote execution-mode guidance around `algorithm` and `offline`: cloud-first
|
|
16
|
+
`auto`, explicit local `grid`/`random`, zero-egress offline mode, result
|
|
17
|
+
provenance, and legacy selector deprecations.
|
|
19
18
|
|
|
20
19
|
## [0.14.1] - 2026-06-19
|
|
21
20
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: traigent
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.16.0.dev0
|
|
4
4
|
Summary: Enterprise-grade LLM optimization platform with advanced analytics and AI-powered insights
|
|
5
5
|
Author-email: Traigent Team <opensource@traigent.ai>
|
|
6
6
|
License-Expression: AGPL-3.0-only OR LicenseRef-Traigent-Commercial
|
|
@@ -276,7 +276,7 @@ Works with any LLM provider — [OpenAI](https://platform.openai.com/docs), [Ant
|
|
|
276
276
|
|------|----------|------|
|
|
277
277
|
| **Get started quickly** | [Quick Start Guide](docs/getting-started/GETTING_STARTED.md) | 5 min |
|
|
278
278
|
| **Understand the architecture** | [Architecture Overview](docs/architecture/ARCHITECTURE.md) | 5 min |
|
|
279
|
-
| **Track
|
|
279
|
+
| **Track runs in the portal** | [Portal tracking](#portal-tracking) | 5 min |
|
|
280
280
|
| **Try examples locally, then make runs portal-visible** | [Mock walkthrough](walkthrough/mock/) (8 steps) → [Portal](https://portal.traigent.ai) | 15 min |
|
|
281
281
|
| **Read the full API reference** | [Decorator Reference →](docs/api-reference/decorator-reference.md) | — |
|
|
282
282
|
|
|
@@ -341,7 +341,7 @@ The walkthrough examples use local mock mode through the quickstart/testing help
|
|
|
341
341
|
| 5 | `python walkthrough/mock/05_rag_parallel.py` | RAG optimization with parallel evaluation |
|
|
342
342
|
| 6 | `python walkthrough/mock/06_custom_evaluator.py` | Define your own success metrics |
|
|
343
343
|
| 7 | `python walkthrough/mock/07_multi_provider.py` | Compare OpenAI, Anthropic, Google in one run |
|
|
344
|
-
| 8 | `python walkthrough/mock/08_privacy_modes.py` |
|
|
344
|
+
| 8 | `python walkthrough/mock/08_privacy_modes.py` | No-egress local execution |
|
|
345
345
|
|
|
346
346
|
</details>
|
|
347
347
|
|
|
@@ -349,18 +349,18 @@ The walkthrough examples use local mock mode through the quickstart/testing help
|
|
|
349
349
|
|
|
350
350
|
---
|
|
351
351
|
|
|
352
|
-
<a id="portal-
|
|
352
|
+
<a id="portal-tracking"></a>
|
|
353
353
|
|
|
354
|
-
### ☁️ Traigent Portal
|
|
354
|
+
### ☁️ Traigent Portal Tracking
|
|
355
355
|
|
|
356
|
-
Connect to [Traigent Portal](https://portal.traigent.ai) to view results, compare trials, and collaborate. Portal tracking is enabled automatically when `TRAIGENT_API_KEY` is set
|
|
356
|
+
Connect to [Traigent Portal](https://portal.traigent.ai) to view results, compare trials, and collaborate. Portal tracking is enabled automatically when `TRAIGENT_API_KEY` is set; most users do not need any routing settings.
|
|
357
357
|
|
|
358
|
-
|
|
358
|
+
The default run uses Traigent's smart optimizer when portal credentials are available. Local `grid` and `random` searches still sync results to the portal when authenticated. Use `offline=True` only when a run must avoid Traigent backend egress; offline runs do not sync.
|
|
359
359
|
|
|
360
360
|
1. **Sign up** at [portal.traigent.ai](https://portal.traigent.ai) — verify your email to activate
|
|
361
361
|
2. **Create an API key** — click your name (top-right) → **API Keys** → **+ Create API Key**
|
|
362
362
|
3. **Connect** — run `traigent auth login` or set `export TRAIGENT_API_KEY=”sk_...”` <!-- pragma: allowlist secret -->
|
|
363
|
-
4. **Run** — portal tracking is automatic
|
|
363
|
+
4. **Run** — portal tracking is automatic
|
|
364
364
|
|
|
365
365
|
<details>
|
|
366
366
|
<summary>Credential priority and multi-provider setup</summary>
|
|
@@ -409,14 +409,14 @@ def multi_provider_agent(question: str) -> str:
|
|
|
409
409
|
| **Parallel execution** | Concurrent trials and example-level parallelism |
|
|
410
410
|
| **Error resilience** | Interactive pause on rate limits and budget caps — resume or stop gracefully |
|
|
411
411
|
| **Live progress** | Auto-enabled progress bar in interactive terminals (`progress_bar=False` to disable) |
|
|
412
|
-
| **
|
|
412
|
+
| **No-egress option** | `offline=True` keeps Traigent optimization traffic local when policy requires it |
|
|
413
413
|
|
|
414
414
|
**TraigentDemo** — Streamlit playground, use cases, and research benchmarks
|
|
415
415
|
|
|
416
416
|
---
|
|
417
417
|
|
|
418
418
|
<details>
|
|
419
|
-
<summary>📦 Installation details,
|
|
419
|
+
<summary>📦 Installation details, optimization routing, CLI, and more</summary>
|
|
420
420
|
|
|
421
421
|
### Installation
|
|
422
422
|
|
|
@@ -473,15 +473,18 @@ Provide a JSONL dataset — Traigent scores outputs using semantic similarity by
|
|
|
473
473
|
|
|
474
474
|
**[Evaluation guide →](docs/guides/evaluation.md)** — custom evaluators, dataset formats, troubleshooting
|
|
475
475
|
|
|
476
|
-
###
|
|
476
|
+
### Optimization Routing
|
|
477
477
|
|
|
478
|
-
|
|
|
479
|
-
|
|
480
|
-
|
|
|
481
|
-
|
|
|
482
|
-
|
|
|
478
|
+
| Request | Where optimization decisions come from | Portal sync |
|
|
479
|
+
|------|--------|---------|
|
|
480
|
+
| Omit routing settings | Traigent smart optimizer when authenticated | Yes |
|
|
481
|
+
| `algorithm="grid"` or `"random"` | Local search in your Python process | Yes, unless `offline=True` |
|
|
482
|
+
| Smart algorithm name, such as `"bayesian"` or `"optuna_tpe"` | Traigent cloud optimizer | Yes |
|
|
483
|
+
| `offline=True` | Local only, zero Traigent backend egress | No |
|
|
483
484
|
|
|
484
|
-
|
|
485
|
+
Most users should omit these settings. Use `grid` or `random` for explicit local search; use `offline=True` only for no-egress runs.
|
|
486
|
+
|
|
487
|
+
**[Optimization routing guide →](docs/guides/execution-modes.md)** — defaults, local search, portal sync, and migration notes
|
|
485
488
|
|
|
486
489
|
### Quick Reference
|
|
487
490
|
|
|
@@ -128,7 +128,7 @@ Works with any LLM provider — [OpenAI](https://platform.openai.com/docs), [Ant
|
|
|
128
128
|
|------|----------|------|
|
|
129
129
|
| **Get started quickly** | [Quick Start Guide](docs/getting-started/GETTING_STARTED.md) | 5 min |
|
|
130
130
|
| **Understand the architecture** | [Architecture Overview](docs/architecture/ARCHITECTURE.md) | 5 min |
|
|
131
|
-
| **Track
|
|
131
|
+
| **Track runs in the portal** | [Portal tracking](#portal-tracking) | 5 min |
|
|
132
132
|
| **Try examples locally, then make runs portal-visible** | [Mock walkthrough](walkthrough/mock/) (8 steps) → [Portal](https://portal.traigent.ai) | 15 min |
|
|
133
133
|
| **Read the full API reference** | [Decorator Reference →](docs/api-reference/decorator-reference.md) | — |
|
|
134
134
|
|
|
@@ -193,7 +193,7 @@ The walkthrough examples use local mock mode through the quickstart/testing help
|
|
|
193
193
|
| 5 | `python walkthrough/mock/05_rag_parallel.py` | RAG optimization with parallel evaluation |
|
|
194
194
|
| 6 | `python walkthrough/mock/06_custom_evaluator.py` | Define your own success metrics |
|
|
195
195
|
| 7 | `python walkthrough/mock/07_multi_provider.py` | Compare OpenAI, Anthropic, Google in one run |
|
|
196
|
-
| 8 | `python walkthrough/mock/08_privacy_modes.py` |
|
|
196
|
+
| 8 | `python walkthrough/mock/08_privacy_modes.py` | No-egress local execution |
|
|
197
197
|
|
|
198
198
|
</details>
|
|
199
199
|
|
|
@@ -201,18 +201,18 @@ The walkthrough examples use local mock mode through the quickstart/testing help
|
|
|
201
201
|
|
|
202
202
|
---
|
|
203
203
|
|
|
204
|
-
<a id="portal-
|
|
204
|
+
<a id="portal-tracking"></a>
|
|
205
205
|
|
|
206
|
-
### ☁️ Traigent Portal
|
|
206
|
+
### ☁️ Traigent Portal Tracking
|
|
207
207
|
|
|
208
|
-
Connect to [Traigent Portal](https://portal.traigent.ai) to view results, compare trials, and collaborate. Portal tracking is enabled automatically when `TRAIGENT_API_KEY` is set
|
|
208
|
+
Connect to [Traigent Portal](https://portal.traigent.ai) to view results, compare trials, and collaborate. Portal tracking is enabled automatically when `TRAIGENT_API_KEY` is set; most users do not need any routing settings.
|
|
209
209
|
|
|
210
|
-
|
|
210
|
+
The default run uses Traigent's smart optimizer when portal credentials are available. Local `grid` and `random` searches still sync results to the portal when authenticated. Use `offline=True` only when a run must avoid Traigent backend egress; offline runs do not sync.
|
|
211
211
|
|
|
212
212
|
1. **Sign up** at [portal.traigent.ai](https://portal.traigent.ai) — verify your email to activate
|
|
213
213
|
2. **Create an API key** — click your name (top-right) → **API Keys** → **+ Create API Key**
|
|
214
214
|
3. **Connect** — run `traigent auth login` or set `export TRAIGENT_API_KEY=”sk_...”` <!-- pragma: allowlist secret -->
|
|
215
|
-
4. **Run** — portal tracking is automatic
|
|
215
|
+
4. **Run** — portal tracking is automatic
|
|
216
216
|
|
|
217
217
|
<details>
|
|
218
218
|
<summary>Credential priority and multi-provider setup</summary>
|
|
@@ -261,14 +261,14 @@ def multi_provider_agent(question: str) -> str:
|
|
|
261
261
|
| **Parallel execution** | Concurrent trials and example-level parallelism |
|
|
262
262
|
| **Error resilience** | Interactive pause on rate limits and budget caps — resume or stop gracefully |
|
|
263
263
|
| **Live progress** | Auto-enabled progress bar in interactive terminals (`progress_bar=False` to disable) |
|
|
264
|
-
| **
|
|
264
|
+
| **No-egress option** | `offline=True` keeps Traigent optimization traffic local when policy requires it |
|
|
265
265
|
|
|
266
266
|
**TraigentDemo** — Streamlit playground, use cases, and research benchmarks
|
|
267
267
|
|
|
268
268
|
---
|
|
269
269
|
|
|
270
270
|
<details>
|
|
271
|
-
<summary>📦 Installation details,
|
|
271
|
+
<summary>📦 Installation details, optimization routing, CLI, and more</summary>
|
|
272
272
|
|
|
273
273
|
### Installation
|
|
274
274
|
|
|
@@ -325,15 +325,18 @@ Provide a JSONL dataset — Traigent scores outputs using semantic similarity by
|
|
|
325
325
|
|
|
326
326
|
**[Evaluation guide →](docs/guides/evaluation.md)** — custom evaluators, dataset formats, troubleshooting
|
|
327
327
|
|
|
328
|
-
###
|
|
328
|
+
### Optimization Routing
|
|
329
329
|
|
|
330
|
-
|
|
|
331
|
-
|
|
332
|
-
|
|
|
333
|
-
|
|
|
334
|
-
|
|
|
330
|
+
| Request | Where optimization decisions come from | Portal sync |
|
|
331
|
+
|------|--------|---------|
|
|
332
|
+
| Omit routing settings | Traigent smart optimizer when authenticated | Yes |
|
|
333
|
+
| `algorithm="grid"` or `"random"` | Local search in your Python process | Yes, unless `offline=True` |
|
|
334
|
+
| Smart algorithm name, such as `"bayesian"` or `"optuna_tpe"` | Traigent cloud optimizer | Yes |
|
|
335
|
+
| `offline=True` | Local only, zero Traigent backend egress | No |
|
|
335
336
|
|
|
336
|
-
|
|
337
|
+
Most users should omit these settings. Use `grid` or `random` for explicit local search; use `offline=True` only for no-egress runs.
|
|
338
|
+
|
|
339
|
+
**[Optimization routing guide →](docs/guides/execution-modes.md)** — defaults, local search, portal sync, and migration notes
|
|
337
340
|
|
|
338
341
|
### Quick Reference
|
|
339
342
|
|
|
@@ -53,7 +53,7 @@ def answer_question(question: str) -> str:
|
|
|
53
53
|
- **[Optuna Integration](user-guide/optuna_integration.md)** - Optuna-backed optimizers, coordinator, and adapter
|
|
54
54
|
|
|
55
55
|
### 🧭 [Guides](guides/)
|
|
56
|
-
- **[
|
|
56
|
+
- **[Optimization Routing](guides/execution-modes.md)** - Default smart optimization, local search, portal sync, and no-egress runs
|
|
57
57
|
- **[Evaluation](guides/evaluation.md)** - Evaluation best practices and troubleshooting
|
|
58
58
|
- **[Parallel Configuration](guides/parallel-configuration.md)** - Concurrency settings and tuning
|
|
59
59
|
- **[Secrets Management](guides/secrets_management.md)** - Securely manage API keys
|
{traigent-0.14.3 → traigent-0.16.0.dev0}/docs/api-reference/complete-function-specification.md
RENAMED
|
@@ -116,34 +116,23 @@ def my_agent(question: str) -> str:
|
|
|
116
116
|
| --- | --- | --- |
|
|
117
117
|
| `evaluation` | `EvaluationOptions \| dict \| None` | Bundle for `eval_dataset`, `custom_evaluator`, `scoring_function`, and `metric_functions`. |
|
|
118
118
|
| `injection` | `InjectionOptions \| dict \| None` | Bundle for `injection_mode`, `config_param`, `auto_override_frameworks`, and `framework_targets`. |
|
|
119
|
-
| `execution` | `ExecutionOptions \| dict \| None` | Bundle for execution settings including `
|
|
119
|
+
| `execution` | `ExecutionOptions \| dict \| None` | Bundle for execution settings including `algorithm`, `offline`, `local_storage_path`, `parallel_config`, and `max_total_examples`. |
|
|
120
120
|
| `mock` | `MockModeOptions \| dict \| None` | **Deprecated — all fields inert.** Retained on the schema for backwards compatibility (config round-trip). Mock mode is enabled by calling `traigent.testing.enable_mock_mode_for_quickstart()` in local tutorial or test code, not via this object. The legacy `TRAIGENT_MOCK_LLM=true` env var remains available outside production for shell fixtures and backwards compatibility but emits `DeprecationWarning` when users set it directly. See issue #874. |
|
|
121
121
|
|
|
122
122
|
**ExecutionOptions Fields**
|
|
123
123
|
|
|
124
124
|
| Field | Type | Default | Description |
|
|
125
125
|
| --- | --- | --- | --- |
|
|
126
|
-
| `
|
|
126
|
+
| `algorithm` | `str` | `"auto"` | Optimizer selector. `"auto"` uses Traigent's smart optimizer when authenticated; `"grid"` and `"random"` run local search; smart algorithms require cloud. |
|
|
127
|
+
| `offline` | `bool` | `False` | Force local-only operation with zero Traigent backend egress and no portal sync. |
|
|
127
128
|
| `local_storage_path` | `str \| None` | `None` | Custom directory for persisted results. Falls back to `TRAIGENT_RESULTS_FOLDER` or `~/.traigent/`. |
|
|
128
|
-
| `minimal_logging` | `bool` | `True` | Suppresses verbose logs
|
|
129
|
+
| `minimal_logging` | `bool` | `True` | Suppresses verbose logs. |
|
|
129
130
|
| `parallel_config` | `ParallelConfig \| dict \| None` | `None` | Unified concurrency configuration. |
|
|
130
|
-
| `privacy_enabled` | `bool \| None` | `None` | Redacts prompts/responses from telemetry and logs. |
|
|
131
131
|
| `max_total_examples` | `int \| None` | `None` | Global sample budget across all trials (budget guardrail). |
|
|
132
132
|
| `samples_include_pruned` | `bool` | `True` | Whether pruned trials count toward the sample budget. |
|
|
133
133
|
| `reps_per_trial` | `int` | `1` | Number of repetitions per configuration. OSS SDK accepts only `1`; other values raise `pydantic.ValidationError` and require Traigent Enterprise. |
|
|
134
134
|
| `reps_aggregation` | `str` | `"mean"` | Repetition aggregation method. OSS SDK accepts only `"mean"`; other values raise `pydantic.ValidationError` and require Traigent Enterprise. |
|
|
135
|
-
| `
|
|
136
|
-
| `tunable_id` | `str \| None` | `None` | Optional Hybrid API tunable identifier. |
|
|
137
|
-
| `hybrid_api_transport` | `Any \| None` | `None` | Custom Hybrid API transport object. |
|
|
138
|
-
| `hybrid_api_transport_type` | `str` | `"auto"` | Hybrid API transport type selector. |
|
|
139
|
-
| `hybrid_api_batch_size` | `int` | `1` | Number of examples per Hybrid API execute request. |
|
|
140
|
-
| `hybrid_api_batch_parallelism` | `int` | `1` | Concurrent Hybrid API batch execution limit. |
|
|
141
|
-
| `hybrid_api_keep_alive` | `bool` | `True` | Reuse Hybrid API HTTP connections. |
|
|
142
|
-
| `hybrid_api_heartbeat_interval` | `float` | `30.0` | Heartbeat interval for Hybrid API transports. |
|
|
143
|
-
| `hybrid_api_timeout` | `float \| None` | `None` | Hybrid API request timeout override. |
|
|
144
|
-
| `hybrid_api_auth_header` | `str \| None` | `None` | Auth token/header value sent as both `Authorization` and `x-api-key`. |
|
|
145
|
-
| `hybrid_api_auto_discover_tvars` | `bool` | `False` | Auto-discover Hybrid API tuned variables when supported. |
|
|
146
|
-
| `cloud_fallback_policy` | `str \| None` | `None` | Legacy/future cloud fallback policy. It does not enable `execution_mode="cloud"` in 0.12.0. |
|
|
135
|
+
| `evaluator` | `ExternalServiceEvaluator \| dict \| None` | `None` | External service evaluator bundle for API-contract integrations. This does not change optimizer routing. |
|
|
147
136
|
|
|
148
137
|
**Legacy Compatibility**
|
|
149
138
|
|
|
@@ -154,11 +143,13 @@ def my_agent(question: str) -> str:
|
|
|
154
143
|
|
|
155
144
|
**Usage Notes**
|
|
156
145
|
|
|
157
|
-
- The default
|
|
146
|
+
- The default path is `algorithm="auto"`: Traigent smart optimization when portal credentials are available, with trials executing in your process.
|
|
147
|
+
- Set `TRAIGENT_REQUIRE_CLOUD=1` to turn that connectivity fallback into a hard error.
|
|
158
148
|
- Prefer the grouped option classes (`EvaluationOptions`, `InjectionOptions`, `ExecutionOptions`) when you need to adjust several related knobs. Import them from `traigent.api.decorators` and pass either instances or plain dicts. `MockModeOptions` is **deprecated** (all fields inert; see the `mock` row above and issue #874) — do not use it for new code.
|
|
159
149
|
- `parallel_config=ParallelConfig(...)` remains the primary way to control concurrency. Set global defaults via `traigent.configure(parallel_config=...)`, override them in the decorator, and fine-tune per `.optimize()` call. Later scopes override earlier ones field-by-field.
|
|
160
150
|
- `ParallelConfig` lives in `traigent.config.parallel`. You can pass either an instance or a simple `dict` with the same keys.
|
|
161
|
-
- `
|
|
151
|
+
- Use `offline=True` when policy requires zero Traigent backend egress. Local `grid` and `random` runs still sync results to the portal unless `offline=True`.
|
|
152
|
+
- Legacy `execution_mode` inputs are deprecated compatibility shims. Use `algorithm` and `offline` for new code.
|
|
162
153
|
- `config_param` is required whenever you choose `injection_mode="parameter"`; forgetting it leaves your function without injected configs.
|
|
163
154
|
- Provide plain lists for quick starts; Traigent infers orientations (maximize for accuracy-like metrics, minimize for cost/latency) and assigns equal weights. Use an `ObjectiveSchema` when you need explicit control over orientations, weights, or metric metadata.
|
|
164
155
|
- Inline tuned-variable definitions accept `Range`, `IntRange`, `LogRange`, `Choices`, or numeric `(low, high)` tuples. Inline lists are not recognized; use `Choices([...])` instead.
|
|
@@ -189,7 +180,6 @@ Later scopes override earlier ones field-by-field. The runtime resolution logs t
|
|
|
189
180
|
"temperature": (0.0, 1.0)
|
|
190
181
|
},
|
|
191
182
|
evaluation={"eval_dataset": "evals.jsonl"}, # Grouped option bundle
|
|
192
|
-
execution={"execution_mode": "edge_analytics"},
|
|
193
183
|
)
|
|
194
184
|
def my_agent(query: str) -> str:
|
|
195
185
|
return process_query(query)
|
|
@@ -228,7 +218,7 @@ async def optimize(
|
|
|
228
218
|
|
|
229
219
|
| Parameter | Type | Default | Description |
|
|
230
220
|
| --- | --- | --- | --- |
|
|
231
|
-
| `algorithm` | `str \| None` | Decorator default | Optimizer to use
|
|
221
|
+
| `algorithm` | `str \| None` | Decorator default | Optimizer to use. Omit it for the default smart optimizer. `"grid"` and `"random"` run local search and still sync results when authenticated. Explicit smart algorithms such as `"bayesian"`, `"tpe"`, `"optuna_tpe"`, `"optuna_random"`, `"optuna_grid"`, `"optuna_cmaes"`, `"optuna_nsga2"`, `"nsga2"`, `"nsgaii"`, `"nsga_ii"`, `"cmaes"`, and `"cma_es"` require cloud and hard-error when unavailable or offline. |
|
|
232
222
|
| `max_trials` | `int \| None` | Decorator default | Maximum number of trials to execute. `None` means unlimited. |
|
|
233
223
|
| `timeout` | `float \| None` | Decorator default | Wall-clock budget in seconds. |
|
|
234
224
|
| `save_to` | `str \| None` | `None` | Optional path to persist results after completion. |
|
|
@@ -264,8 +254,8 @@ Unknown keys are forwarded to the optimizer and may raise errors when unsupporte
|
|
|
264
254
|
|
|
265
255
|
**Example:**
|
|
266
256
|
```python
|
|
267
|
-
# Run optimization
|
|
268
|
-
result = await my_agent.optimize(
|
|
257
|
+
# Run optimization with the default smart optimizer
|
|
258
|
+
result = await my_agent.optimize(max_trials=50)
|
|
269
259
|
|
|
270
260
|
# Save results
|
|
271
261
|
await my_agent.save_optimization_results("results.json")
|
|
@@ -535,6 +525,9 @@ class OptimizationResult:
|
|
|
535
525
|
- `successful_trials`: List of trials that completed successfully
|
|
536
526
|
- `success_rate`: Ratio of successful trials to total trials
|
|
537
527
|
|
|
528
|
+
`metadata["source"]` records result provenance as one of `cloud_brain`,
|
|
529
|
+
`local_fallback`, `explicit_local`, or `offline`.
|
|
530
|
+
|
|
538
531
|
### TrialResult
|
|
539
532
|
|
|
540
533
|
```python
|
|
@@ -489,11 +489,11 @@ from traigent.config.parallel import ParallelConfig
|
|
|
489
489
|
|
|
490
490
|
@traigent.optimize(
|
|
491
491
|
execution=ExecutionOptions(
|
|
492
|
-
|
|
492
|
+
algorithm="grid",
|
|
493
|
+
offline=True,
|
|
493
494
|
local_storage_path="./my_results",
|
|
494
495
|
minimal_logging=True,
|
|
495
496
|
parallel_config=ParallelConfig(thread_workers=4, trial_concurrency=2),
|
|
496
|
-
privacy_enabled=False,
|
|
497
497
|
max_total_examples=1000,
|
|
498
498
|
samples_include_pruned=True,
|
|
499
499
|
reps_per_trial=1,
|
|
@@ -505,17 +505,16 @@ from traigent.config.parallel import ParallelConfig
|
|
|
505
505
|
|
|
506
506
|
**ExecutionOptions Fields**:
|
|
507
507
|
|
|
508
|
-
- `
|
|
508
|
+
- `algorithm`: optimizer selector. `"auto"` is the default smart optimizer; `"grid"` and `"random"` run local search and still sync results when authenticated; smart algorithms require cloud and hard-error when unavailable or offline.
|
|
509
|
+
- `offline`: force local-only operation with zero Traigent backend egress and no portal sync.
|
|
509
510
|
- `local_storage_path`: Custom storage directory
|
|
510
511
|
- `minimal_logging`: Reduce log verbosity
|
|
511
512
|
- `parallel_config`: Concurrency configuration
|
|
512
|
-
- `privacy_enabled`: Redact sensitive data
|
|
513
513
|
- `max_total_examples`: Global sample budget
|
|
514
514
|
- `samples_include_pruned`: Count pruned trials in budget
|
|
515
515
|
- `reps_per_trial`: Repetitions per configuration. OSS SDK accepts only `1`; non-default values raise `pydantic.ValidationError` and require Traigent Enterprise.
|
|
516
516
|
- `reps_aggregation`: Repetition aggregation method. OSS SDK accepts only `"mean"`; non-default values raise `pydantic.ValidationError` and require Traigent Enterprise.
|
|
517
|
-
- `
|
|
518
|
-
- `cloud_fallback_policy`: Legacy/future cloud fallback behavior. It does not enable `execution_mode="cloud"` in 0.12.0.
|
|
517
|
+
- `evaluator`: external evaluator bundle for API-contract integrations. This does not change optimizer routing; it only changes how each trial is evaluated.
|
|
519
518
|
|
|
520
519
|
#### `mock`
|
|
521
520
|
|
|
@@ -565,6 +564,9 @@ The `**runtime_overrides` parameter accepts additional settings:
|
|
|
565
564
|
)
|
|
566
565
|
```
|
|
567
566
|
|
|
567
|
+
Legacy `execution_mode=` inputs are deprecated compatibility shims. Use
|
|
568
|
+
`algorithm=` and `offline=` for new code.
|
|
569
|
+
|
|
568
570
|
Run controls such as `max_trials` and `timeout` are passed to `.optimize()`:
|
|
569
571
|
|
|
570
572
|
```python
|
|
@@ -642,16 +644,13 @@ def answer_question(question: str) -> str:
|
|
|
642
644
|
lambda cfg, metrics: metrics.get("cost", 0) <= 0.10 if metrics else True,
|
|
643
645
|
],
|
|
644
646
|
evaluation={"eval_dataset": "support_tickets.jsonl"},
|
|
645
|
-
|
|
646
|
-
"execution_mode": "edge_analytics",
|
|
647
|
-
"parallel_config": {"thread_workers": 4},
|
|
648
|
-
},
|
|
647
|
+
parallel_config={"thread_workers": 4},
|
|
649
648
|
)
|
|
650
649
|
def process_ticket(ticket: str) -> str:
|
|
651
650
|
return support_chain.run(ticket)
|
|
652
651
|
```
|
|
653
652
|
|
|
654
|
-
###
|
|
653
|
+
### No-Egress Local Storage
|
|
655
654
|
|
|
656
655
|
```python
|
|
657
656
|
@traigent.optimize(
|
|
@@ -661,12 +660,10 @@ def process_ticket(ticket: str) -> str:
|
|
|
661
660
|
"temperature": [0.1, 0.3, 0.5],
|
|
662
661
|
},
|
|
663
662
|
evaluation={"eval_dataset": "medical_qa.jsonl"},
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
"minimal_logging": True,
|
|
669
|
-
},
|
|
663
|
+
algorithm="grid",
|
|
664
|
+
offline=True,
|
|
665
|
+
local_storage_path="./medical_optimizations",
|
|
666
|
+
minimal_logging=True,
|
|
670
667
|
)
|
|
671
668
|
def medical_assistant(query: str) -> str:
|
|
672
669
|
return process_medical_query(query)
|
|
@@ -700,7 +697,7 @@ def my_agent(query: str) -> str:
|
|
|
700
697
|
- [Complete Function Specification](./complete-function-specification.md) - Full API reference
|
|
701
698
|
- [Evaluation Guide](../user-guide/evaluation_guide.md) - Understanding accuracy metrics, evaluation methods, and troubleshooting
|
|
702
699
|
- [Injection Modes Guide](../user-guide/injection_modes.md) - Configuration injection patterns
|
|
703
|
-
- [
|
|
700
|
+
- [Choosing the Right Optimization Model](../user-guide/choosing_optimization_model.md) - Default smart optimization, local search, no-egress runs, and migration guidance
|
|
704
701
|
- [Thread Pool Examples](./thread-pool-examples.md) - Context propagation with threads
|
|
705
|
-
- [Telemetry Documentation](./telemetry.md) - Data collection and
|
|
702
|
+
- [Telemetry Documentation](./telemetry.md) - Data collection and no-egress controls
|
|
706
703
|
- Custom evaluator walkthrough in the repository examples - LLM-as-Judge implementation
|
|
@@ -24,8 +24,7 @@ During optimization runs, Traigent collects:
|
|
|
24
24
|
- Algorithm used (grid, random, bayesian, optuna)
|
|
25
25
|
- Number of trials executed
|
|
26
26
|
- Total optimization duration
|
|
27
|
-
-
|
|
28
|
-
legacy alias for `hybrid`, and `cloud` is reserved/fails closed)
|
|
27
|
+
- Result source (`cloud_brain`, `local_fallback`, `explicit_local`, or `offline`)
|
|
29
28
|
- Stop conditions triggered
|
|
30
29
|
- Content-free tuned-variable observations can include knob names, enum/scalar values, numeric metrics, and aggregate effectuation events for backend optimization. Set `TRAIGENT_TVAR_OBSERVATION=off` to disable them, or use `TRAIGENT_TVAR_OBSERVATION=hashed` (default) to hash free-form string values. Only `off` and `hashed` are supported; unsupported values fall back to `hashed`.
|
|
31
30
|
|
|
@@ -46,25 +45,26 @@ Traigent does **not** collect:
|
|
|
46
45
|
- **API keys or credentials**
|
|
47
46
|
- **Source code or function implementations**
|
|
48
47
|
|
|
49
|
-
###
|
|
48
|
+
### Data Boundary and No-Egress Runs
|
|
50
49
|
|
|
51
|
-
|
|
50
|
+
The default portal-backed path sends configuration identifiers and numeric metrics. It
|
|
51
|
+
does not send dataset example inputs, expected outputs, prompts, responses, or
|
|
52
|
+
example metadata. Use `offline=True` when your policy requires no Traigent
|
|
53
|
+
backend egress at all:
|
|
52
54
|
|
|
53
55
|
```python
|
|
54
56
|
@traigent.optimize(
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
},
|
|
57
|
+
algorithm="grid",
|
|
58
|
+
offline=True,
|
|
58
59
|
...
|
|
59
60
|
)
|
|
60
61
|
```
|
|
61
62
|
|
|
62
|
-
Traigent
|
|
63
|
-
|
|
64
|
-
- Minimize logged content while keeping metrics and configuration metadata
|
|
65
|
-
- Keep results local in open-source builds
|
|
63
|
+
No-egress runs keep Traigent optimization metadata local while still allowing your
|
|
64
|
+
own function to call LLM providers or other services.
|
|
66
65
|
|
|
67
|
-
|
|
66
|
+
Use `TRAIGENT_DISABLE_TELEMETRY=true` for telemetry opt-out and `offline=True`
|
|
67
|
+
for zero Traigent backend egress.
|
|
68
68
|
|
|
69
69
|
### OpenTelemetry Tracing
|
|
70
70
|
|
|
@@ -121,14 +121,14 @@ Telemetry data is used for:
|
|
|
121
121
|
|
|
122
122
|
## Data Retention
|
|
123
123
|
|
|
124
|
-
**
|
|
124
|
+
**No-egress runs**:
|
|
125
125
|
- All data is stored **locally** on your machine
|
|
126
126
|
- Data is kept in `~/.traigent/` or your specified `local_storage_path`
|
|
127
127
|
- You control retention - delete files as needed
|
|
128
|
-
- No data is sent to
|
|
128
|
+
- No data is sent to the Traigent backend
|
|
129
129
|
|
|
130
|
-
**
|
|
131
|
-
-
|
|
130
|
+
**Portal-backed runs**:
|
|
131
|
+
- Configuration IDs/schema and numeric metrics can be sent to Traigent backend for optimization coordination
|
|
132
132
|
- Retention policies depend on your managed-service agreement
|
|
133
133
|
- You can request data deletion at any time
|
|
134
134
|
|
|
@@ -234,7 +234,7 @@ Each event includes:
|
|
|
234
234
|
|
|
235
235
|
## Local Storage Structure
|
|
236
236
|
|
|
237
|
-
When using
|
|
237
|
+
When using `offline=True`, data is stored locally:
|
|
238
238
|
|
|
239
239
|
```
|
|
240
240
|
~/.traigent/
|
|
@@ -251,9 +251,7 @@ You can customize the storage location:
|
|
|
251
251
|
|
|
252
252
|
```python
|
|
253
253
|
@traigent.optimize(
|
|
254
|
-
|
|
255
|
-
"local_storage_path": "./my_optimizations",
|
|
256
|
-
},
|
|
254
|
+
local_storage_path="./my_optimizations",
|
|
257
255
|
...
|
|
258
256
|
)
|
|
259
257
|
```
|
|
@@ -270,8 +268,7 @@ example record includes the input **query**, the model **response**, and the
|
|
|
270
268
|
> cards, API keys / bearer tokens, etc.). Free-text content in prompts and
|
|
271
269
|
> responses (names, addresses, proprietary data) is stored **verbatim**.
|
|
272
270
|
|
|
273
|
-
To keep ids and metrics while omitting that content
|
|
274
|
-
privacy mode — disable content logging:
|
|
271
|
+
To keep ids and metrics while omitting that content, disable content logging:
|
|
275
272
|
|
|
276
273
|
```bash
|
|
277
274
|
export TRAIGENT_LOG_EXAMPLE_CONTENT=false # also accepts 0 / no / off
|
|
@@ -283,7 +280,7 @@ and `error`, but `query` / `response` / `expected` are `null`.
|
|
|
283
280
|
|
|
284
281
|
Traigent writes a `.gitignore` (`*`) into the log root so this content is not
|
|
285
282
|
accidentally committed, but you should still keep `.traigent/` out of version
|
|
286
|
-
control and CI artifact collection in
|
|
283
|
+
control and CI artifact collection in sensitive projects.
|
|
287
284
|
|
|
288
285
|
## Telemetry Listeners
|
|
289
286
|
|
|
@@ -304,7 +301,7 @@ emitter.subscribe(my_listener)
|
|
|
304
301
|
# (unless TRAIGENT_DISABLE_TELEMETRY is set)
|
|
305
302
|
```
|
|
306
303
|
|
|
307
|
-
## Security and
|
|
304
|
+
## Security and Sensitive Data
|
|
308
305
|
|
|
309
306
|
### Data Sanitization
|
|
310
307
|
|
|
@@ -353,10 +350,11 @@ Traigent SDK is designed to be GDPR-compliant:
|
|
|
353
350
|
|
|
354
351
|
For HIPAA compliance or handling sensitive data:
|
|
355
352
|
|
|
356
|
-
1. **
|
|
353
|
+
1. **Use `offline=True` for Zero Traigent Egress**:
|
|
357
354
|
```python
|
|
358
355
|
@traigent.optimize(
|
|
359
|
-
|
|
356
|
+
algorithm="grid",
|
|
357
|
+
offline=True,
|
|
360
358
|
...
|
|
361
359
|
)
|
|
362
360
|
```
|
|
@@ -369,10 +367,9 @@ For HIPAA compliance or handling sensitive data:
|
|
|
369
367
|
3. **Use Local Storage Only**:
|
|
370
368
|
```python
|
|
371
369
|
@traigent.optimize(
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
},
|
|
370
|
+
algorithm="grid",
|
|
371
|
+
offline=True,
|
|
372
|
+
local_storage_path="/secure/location",
|
|
376
373
|
...
|
|
377
374
|
)
|
|
378
375
|
```
|
|
@@ -383,7 +380,9 @@ For HIPAA compliance or handling sensitive data:
|
|
|
383
380
|
|
|
384
381
|
### Q: Is telemetry enabled by default?
|
|
385
382
|
|
|
386
|
-
**A**: Yes,
|
|
383
|
+
**A**: Yes, for local optimization metadata. The default portal-backed path sends
|
|
384
|
+
configuration IDs/schema and numeric metrics only; use `offline=True` for zero
|
|
385
|
+
Traigent backend egress.
|
|
387
386
|
|
|
388
387
|
### Q: How do I verify telemetry is disabled?
|
|
389
388
|
|
|
@@ -404,11 +403,13 @@ print(os.getenv("TRAIGENT_DISABLE_TELEMETRY"))
|
|
|
404
403
|
|
|
405
404
|
### Q: Can I enable telemetry for some optimizations but not others?
|
|
406
405
|
|
|
407
|
-
**A**: The `TRAIGENT_DISABLE_TELEMETRY` environment variable is process-wide.
|
|
406
|
+
**A**: The `TRAIGENT_DISABLE_TELEMETRY` environment variable is process-wide.
|
|
407
|
+
Use `offline=True` when you need to disable Traigent backend egress for a run.
|
|
408
408
|
|
|
409
409
|
### Q: Where can I see what telemetry data was collected?
|
|
410
410
|
|
|
411
|
-
**A**:
|
|
411
|
+
**A**: With `offline=True`, check the JSON files in `~/.traigent/sessions/`. They
|
|
412
|
+
contain the same trial metadata and metrics emitted to telemetry listeners.
|
|
412
413
|
|
|
413
414
|
### Q: Can I contribute telemetry data to improve Traigent?
|
|
414
415
|
|
|
@@ -417,6 +418,6 @@ print(os.getenv("TRAIGENT_DISABLE_TELEMETRY"))
|
|
|
417
418
|
## Related Documentation
|
|
418
419
|
|
|
419
420
|
- [Decorator Reference](./decorator-reference.md) - Configuration options
|
|
420
|
-
- [
|
|
421
|
-
- [
|
|
421
|
+
- [Choosing the Right Optimization Model](../user-guide/choosing_optimization_model.md) - defaults, local search, no-egress runs, and migration guidance
|
|
422
|
+
- [Security](../contributing/SECURITY.md) - Security practices
|
|
422
423
|
- [API Reference](./complete-function-specification.md) - Full API documentation
|