traigent 0.15.0__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.15.0 → traigent-0.16.0.dev0}/CHANGELOG.md +0 -13
- {traigent-0.15.0/traigent.egg-info → traigent-0.16.0.dev0}/PKG-INFO +20 -19
- {traigent-0.15.0 → traigent-0.16.0.dev0}/README.md +19 -18
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/README.md +1 -1
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/complete-function-specification.md +10 -12
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/decorator-reference.md +8 -13
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/telemetry.md +16 -23
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/ARCHITECTURE.md +19 -22
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/API_PATTERNS.md +5 -30
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/LEARNING_ROADMAP.md +1 -1
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/QUICK_REFERENCE.md +4 -5
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/GETTING_STARTED.md +13 -31
- {traigent-0.15.0 → 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.16.0.dev0/docs/user-guide/choosing_optimization_model.md +95 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/walkthrough.md +1 -1
- {traigent-0.15.0 → traigent-0.16.0.dev0}/pyproject.toml +1 -1
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/__init__.py +15 -4
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/__init__.py +10 -1
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/decorators.py +45 -31
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/auth_commands.py +10 -2
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/function_discovery.py +21 -14
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/local_commands.py +85 -43
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/main.py +79 -11
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/optimization_validator.py +37 -2
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/sync_commands.py +6 -6
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/api_operations.py +47 -5
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/session_operations.py +21 -6
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/sync_manager.py +76 -8
- traigent-0.16.0.dev0/traigent/config/__init__.py +70 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/types.py +247 -72
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/backend_session_manager.py +14 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/execution_policy_runtime.py +0 -2
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/optimized_function.py +1 -4
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/orchestrator.py +22 -12
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/session_types.py +15 -2
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__main__.py +3 -4
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/_env.py +6 -11
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/slow_update.py +3 -2
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/splits.py +5 -3
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/input_validation.py +5 -7
- {traigent-0.15.0 → traigent-0.16.0.dev0/traigent.egg-info}/PKG-INFO +20 -19
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/SOURCES.txt +0 -1
- traigent-0.15.0/docs/guides/execution-mode-migration.md +0 -124
- traigent-0.15.0/docs/guides/execution-modes.md +0 -199
- traigent-0.15.0/docs/user-guide/choosing_optimization_model.md +0 -152
- traigent-0.15.0/traigent/config/__init__.py +0 -49
- traigent-0.15.0/traigent/generation/skill_train/_deterministic_indices.py +0 -33
- {traigent-0.15.0 → traigent-0.16.0.dev0}/COMMERCIAL-LICENSE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/CONTRIBUTING.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/CONTRIBUTOR-LICENSING.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/DISCLAIMER.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/LICENSE +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/MANIFEST.in +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/NOTICE +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/SECURITY.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/LOCAL_CI_GATE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/SYNC_MAP.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/agent-skill.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/enterprise-beta-api.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/interactive_optimizer.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/thread-pool-examples.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/cost-architecture-validation.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/execution_mode_follow_up.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/integrations-inventory.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/plugin_architecture.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/project-structure.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/stop_conditions.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/composite-knob-ir.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/composite-knobs.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/guided-generation.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/ADDING_NEW_INTEGRATIONS.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/CODE_OF_CONDUCT.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/CONTRIBUTING.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/EXAMPLE_TEMPLATE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/SECURITY.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/aikido_triage.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/code_review_instructions.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/test-quality-guide.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/demos/DEMO_VIDEO_GUIDE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/demos/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/START_HERE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/TROUBLESHOOTING.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/fake-completion-tracking.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/feature_matrices/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/authentication.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/constraint-dsl.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/dataflow-detection.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/framework_override_enhanced_features.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/mcp-server.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/observability-spans.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/onboarding.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/prompt_management.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/recommendations.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/safety-gates.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/seamless_injection.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/strategy-presets.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/strict_metrics_nulls.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/installation.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/minimal-integration.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/portal-dev-laptop-agent.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/testing.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/VSCODE_RESTART_GUIDE.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/js-bridge.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/llm_plugin_migration_guide.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/parallel-configuration.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/secrets_management.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/hybrid-mode-api-contract.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/hybrid-mode-client-guide.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/azure_openai.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/bedrock.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/google_gemini.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/security/trust_model.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/testing/CREATIVE_STRESS_TESTING.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/composite-knob-ir.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/composite-knobs.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/guided-generation.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/schema.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/tagging_tracking.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/taxonomy_reference.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/tvl/CONSTRAINT_EXPRESSIONS.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/README.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/agent_optimization.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/configuration-spaces.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/evaluation_guide.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/injection_modes.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/interactive_optimization.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/optuna_integration.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/tuned_variables.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-all.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-analytics.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-bayesian.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-chroma.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-dev.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-hybrid.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-integrations.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-security.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-test.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/setup.cfg +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/_version.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/adapters/execution_adapter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/config_mapper.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/executor.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/platforms.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/specification_generator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/anomaly.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/cost_optimization.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/example_insights.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/intelligence.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/meta_learning.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/next_steps.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/predictive.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/scheduling.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/agent_inference.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/config_builder.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/config_space.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/constraint_builders.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/constraints.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/functions.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/parameter_ranges.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/parameter_validator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/safety.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/strategy_presets.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/validation_protocol.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/detect_tvars_command.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/generate_config_command.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/hooks_commands.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/next_steps_command.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/onboard_commands.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/playbook_commands.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/validation_types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/_aiohttp_compat.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/agent_dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/api_key_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/async_batch_transport.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/auth.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_bridges.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_components.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_synchronizer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/benchmark_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/billing.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/cloud_operations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/credential_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/credential_resolver.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/dataset_converter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/event_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/governance.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/integration_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/models.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/optimizer_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/password_auth_handler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/privacy_operations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/production_mcp_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/remote_guidance.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/resilient_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/service.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/session_types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/sessions.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/subset_selection.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/token_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/trial_operations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/trial_tracker.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/url_security.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/validators.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/api_keys.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/ast_transformer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/backend_config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/context.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/feature_flags.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/models.yaml +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/parallel.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/project.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/providers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/runtime_injector.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/seamless_injection.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/seamless_optuna_adapter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/tenant.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/agent_classifier.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/apply.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_catalog_entry_schema.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_observation_schema.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_value_recommendation_schema.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/tvar_catalog.v1.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/llm_backend.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/pipeline.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/agent_type_catalog.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/benchmark_catalog.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/constraint_templates.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/range_presets.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/recommendations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/benchmarks.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/objectives.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/safety_constraints.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/structural_constraints.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_ranges.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_recommendations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/best_config_runtime.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cache_policy.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/ci_approval.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/config_builder.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/config_state_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/constants.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cost_enforcement.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cost_estimator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/evaluator_wrapper.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/exception_handler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/license.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/llm_processor.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/logger_facade.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/mandatory_metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/meta_types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metadata_helpers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metric_registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metrics_aggregator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/namespace.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/objectives.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/optimization_pipeline.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/orchestrator_helpers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/parallel_execution_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/progress_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/pruning_progress_tracker.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/refactoring_utils.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/result_selection.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/sample_budget.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/samplers/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/samplers/random_sampler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/session_context.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stat_significance.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stop_condition_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stop_conditions.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trace_env.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/tracing.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_context.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_lifecycle.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_result_factory.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/types_ext.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/utils.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/workflow_trace_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/contracts.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/framework_param.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/self_consistency.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/metric_eval_catalog.v1.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/schemas/metric_eval_catalog_entry_schema.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog_loader.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/dataset_registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/hybrid_api.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/local.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/metrics_tracker.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/recommendations.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/_bootstrap.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/_demo.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/anthropic.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/aws.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/azure.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/gcp.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/gemini.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/groq.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/litellm_any.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/manifest.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/openai.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/openrouter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/qa_samples.jsonl +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/qa_samples.jsonl +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/tutorial_bootstrap.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/backend_provider.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/example_synth.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/llm_provider.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/loop.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/models.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/options.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/prompt_rewriter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/artifacts.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/buffer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/document.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/edits.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/prompts.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/reflection.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/schedule.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer_result.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/validators.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/guaranteed_modes.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/installer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/validator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/http_transport.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/lifecycle.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/mcp_transport.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/protocol.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/transport.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/activation.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/base_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/batch_wrapper.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/bedrock_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/dspy_adapter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/framework_override.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langchain/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langchain/handler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/callback.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/tracker.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/anthropic_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/azure_openai_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/base_llm_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/bedrock_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/cohere_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/gemini_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/huggingface_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/litellm_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/llamaindex_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/mistral_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/mappings.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/anthropic_discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/azure_discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/cache.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/gemini_discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/mistral_discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/openai_discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/mlflow.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/wandb.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/workflow_traces.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/plugin_registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/providers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/_types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/handler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/message_coercion.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/mock_adapter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/parameter_normalizer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/response_wrapper.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/validation.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/version_compat.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/chromadb_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/pinecone_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/weaviate_plugin.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/wrappers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/batch.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/local.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/streaming.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/adapters.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/bindings.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/canonical.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/cascade.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/certificates.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/composites.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/kinds.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/patterns.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/resolution.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/resolver.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/runtime.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/signals.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/telemetry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/server.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/tools.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/agent_metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/content_features.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/deepeval_metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/ragas_metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/agent_spans.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/decorators.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/batch_optimizers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/benchmarking.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/cloud_optimizer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/grid.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/interactive_optimizer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_checkpoint.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_utils.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/pruners.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/random.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/remote.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/remote_services.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/results.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/service_registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/loader.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/model.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/scaffold.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/schemas/agent_playbook_schema.json +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/staleness.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/validator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/plugins/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/plugins/registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/dtos.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/providers/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/providers/validation.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/py.typed +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/reporting/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/reporting/example_map.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/audit.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/helpers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/mfa.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/models.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/oidc.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/saml.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/sms.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/totp.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/credentials.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/crypto_utils.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/deployment.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/encryption.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/enterprise.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/headers.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/jwt_validator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/rate_limiter.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/redaction.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/session_manager.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/tenant.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/convergence-patterns.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/optimization-result-api.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/constraints.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/parameter-types.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/error-reference.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/logging-config.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/mock-mode.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/evaluation-options.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/execution-modes.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/injection-modes.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/dspy.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/langchain.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/litellm.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/environment-variables.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/installation-extras.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/SKILL.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/algorithms.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/cost-management.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/parallel-config.md +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/storage/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/storage/local_storage.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/telemetry/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/telemetry/optuna_metrics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/testing/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/traigent_client.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/traigent_integration.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/dataflow_strategy.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_strategies.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_types.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detector.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/discovery.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/observation.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/py.typed +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/__main__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/models.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/objectives.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/options.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/promotion_gate.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/registry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/spec_loader.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/spec_validator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/statistics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/batch_optimizer_utils.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/batch_processing.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/callbacks.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/console.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/constraints.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/cost_calculator.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/diagnostics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/env_config.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/error_handler.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/example_id.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/exceptions.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/file_versioning.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/function_identity.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/hashing.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/importance.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/incentives.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/insights.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/langchain_interceptor.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/litellm_interceptor.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/llm_response_parsing.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/local_analytics.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/logging.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/multi_objective.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/numpy_compat.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/objectives.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/optimization_analyzer.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/optimization_logger.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/persistence.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/reproducibility.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/results_table.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/retry.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/secure_path.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/url_security.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/user_prompts.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/validation.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/visualization/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/visualization/plots.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/errors.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/server.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/service.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/dependency_links.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/entry_points.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/requires.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/top_level.txt +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/__init__.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/base.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/plugins.py +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/py.typed +0 -0
- {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/validators.py +0 -0
|
@@ -16,19 +16,6 @@ Format based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
|
16
16
|
`auto`, explicit local `grid`/`random`, zero-egress offline mode, result
|
|
17
17
|
provenance, and legacy selector deprecations.
|
|
18
18
|
|
|
19
|
-
## [0.14.3] - 2026-06-20
|
|
20
|
-
|
|
21
|
-
### Changed
|
|
22
|
-
- **Removed the JS bridge from the `@optimize` decorator path** and added a guard for
|
|
23
|
-
`safety_constraints`. (#1371)
|
|
24
|
-
|
|
25
|
-
### Security
|
|
26
|
-
- Addressed scoped Aikido security findings. (#1374)
|
|
27
|
-
|
|
28
|
-
### Fixed
|
|
29
|
-
- Corrected the async context-manager mock in the hybrid degradation test and updated
|
|
30
|
-
`test_safety.py` integration tests for the `NotImplementedError` guard.
|
|
31
|
-
|
|
32
19
|
## [0.14.1] - 2026-06-19
|
|
33
20
|
|
|
34
21
|
### Fixed
|
|
@@ -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,20 +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
|
-
|
|
359
|
-
portal-tracked optimization, set `TRAIGENT_API_KEY` and omit the legacy
|
|
360
|
-
execution-mode field.
|
|
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.
|
|
361
359
|
|
|
362
360
|
1. **Sign up** at [portal.traigent.ai](https://portal.traigent.ai) — verify your email to activate
|
|
363
361
|
2. **Create an API key** — click your name (top-right) → **API Keys** → **+ Create API Key**
|
|
364
362
|
3. **Connect** — run `traigent auth login` or set `export TRAIGENT_API_KEY=”sk_...”` <!-- pragma: allowlist secret -->
|
|
365
|
-
4. **Run** — portal tracking is automatic
|
|
363
|
+
4. **Run** — portal tracking is automatic
|
|
366
364
|
|
|
367
365
|
<details>
|
|
368
366
|
<summary>Credential priority and multi-provider setup</summary>
|
|
@@ -411,14 +409,14 @@ def multi_provider_agent(question: str) -> str:
|
|
|
411
409
|
| **Parallel execution** | Concurrent trials and example-level parallelism |
|
|
412
410
|
| **Error resilience** | Interactive pause on rate limits and budget caps — resume or stop gracefully |
|
|
413
411
|
| **Live progress** | Auto-enabled progress bar in interactive terminals (`progress_bar=False` to disable) |
|
|
414
|
-
| **
|
|
412
|
+
| **No-egress option** | `offline=True` keeps Traigent optimization traffic local when policy requires it |
|
|
415
413
|
|
|
416
414
|
**TraigentDemo** — Streamlit playground, use cases, and research benchmarks
|
|
417
415
|
|
|
418
416
|
---
|
|
419
417
|
|
|
420
418
|
<details>
|
|
421
|
-
<summary>📦 Installation details,
|
|
419
|
+
<summary>📦 Installation details, optimization routing, CLI, and more</summary>
|
|
422
420
|
|
|
423
421
|
### Installation
|
|
424
422
|
|
|
@@ -475,15 +473,18 @@ Provide a JSONL dataset — Traigent scores outputs using semantic similarity by
|
|
|
475
473
|
|
|
476
474
|
**[Evaluation guide →](docs/guides/evaluation.md)** — custom evaluators, dataset formats, troubleshooting
|
|
477
475
|
|
|
478
|
-
###
|
|
476
|
+
### Optimization Routing
|
|
479
477
|
|
|
480
|
-
|
|
|
481
|
-
|
|
482
|
-
|
|
|
483
|
-
|
|
|
484
|
-
|
|
|
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 |
|
|
485
484
|
|
|
486
|
-
|
|
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
|
|
487
488
|
|
|
488
489
|
### Quick Reference
|
|
489
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,20 +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
|
-
|
|
211
|
-
portal-tracked optimization, set `TRAIGENT_API_KEY` and omit the legacy
|
|
212
|
-
execution-mode field.
|
|
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.
|
|
213
211
|
|
|
214
212
|
1. **Sign up** at [portal.traigent.ai](https://portal.traigent.ai) — verify your email to activate
|
|
215
213
|
2. **Create an API key** — click your name (top-right) → **API Keys** → **+ Create API Key**
|
|
216
214
|
3. **Connect** — run `traigent auth login` or set `export TRAIGENT_API_KEY=”sk_...”` <!-- pragma: allowlist secret -->
|
|
217
|
-
4. **Run** — portal tracking is automatic
|
|
215
|
+
4. **Run** — portal tracking is automatic
|
|
218
216
|
|
|
219
217
|
<details>
|
|
220
218
|
<summary>Credential priority and multi-provider setup</summary>
|
|
@@ -263,14 +261,14 @@ def multi_provider_agent(question: str) -> str:
|
|
|
263
261
|
| **Parallel execution** | Concurrent trials and example-level parallelism |
|
|
264
262
|
| **Error resilience** | Interactive pause on rate limits and budget caps — resume or stop gracefully |
|
|
265
263
|
| **Live progress** | Auto-enabled progress bar in interactive terminals (`progress_bar=False` to disable) |
|
|
266
|
-
| **
|
|
264
|
+
| **No-egress option** | `offline=True` keeps Traigent optimization traffic local when policy requires it |
|
|
267
265
|
|
|
268
266
|
**TraigentDemo** — Streamlit playground, use cases, and research benchmarks
|
|
269
267
|
|
|
270
268
|
---
|
|
271
269
|
|
|
272
270
|
<details>
|
|
273
|
-
<summary>📦 Installation details,
|
|
271
|
+
<summary>📦 Installation details, optimization routing, CLI, and more</summary>
|
|
274
272
|
|
|
275
273
|
### Installation
|
|
276
274
|
|
|
@@ -327,15 +325,18 @@ Provide a JSONL dataset — Traigent scores outputs using semantic similarity by
|
|
|
327
325
|
|
|
328
326
|
**[Evaluation guide →](docs/guides/evaluation.md)** — custom evaluators, dataset formats, troubleshooting
|
|
329
327
|
|
|
330
|
-
###
|
|
328
|
+
### Optimization Routing
|
|
331
329
|
|
|
332
|
-
|
|
|
333
|
-
|
|
334
|
-
|
|
|
335
|
-
|
|
|
336
|
-
|
|
|
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 |
|
|
337
336
|
|
|
338
|
-
|
|
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
|
|
339
340
|
|
|
340
341
|
### Quick Reference
|
|
341
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.15.0 → traigent-0.16.0.dev0}/docs/api-reference/complete-function-specification.md
RENAMED
|
@@ -123,16 +123,16 @@ def my_agent(question: str) -> str:
|
|
|
123
123
|
|
|
124
124
|
| Field | Type | Default | Description |
|
|
125
125
|
| --- | --- | --- | --- |
|
|
126
|
-
| `algorithm` | `str` | `"auto"` | Optimizer selector. `"auto"`
|
|
127
|
-
| `offline` | `bool` | `False` | Force local-only operation with zero Traigent backend egress. |
|
|
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. |
|
|
128
128
|
| `local_storage_path` | `str \| None` | `None` | Custom directory for persisted results. Falls back to `TRAIGENT_RESULTS_FOLDER` or `~/.traigent/`. |
|
|
129
|
-
| `minimal_logging` | `bool` | `True` | Suppresses verbose logs
|
|
129
|
+
| `minimal_logging` | `bool` | `True` | Suppresses verbose logs. |
|
|
130
130
|
| `parallel_config` | `ParallelConfig \| dict \| None` | `None` | Unified concurrency configuration. |
|
|
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
|
-
| `evaluator` | `ExternalServiceEvaluator \|
|
|
135
|
+
| `evaluator` | `ExternalServiceEvaluator \| dict \| None` | `None` | External service evaluator bundle for API-contract integrations. This does not change optimizer routing. |
|
|
136
136
|
|
|
137
137
|
**Legacy Compatibility**
|
|
138
138
|
|
|
@@ -143,13 +143,13 @@ def my_agent(question: str) -> str:
|
|
|
143
143
|
|
|
144
144
|
**Usage Notes**
|
|
145
145
|
|
|
146
|
-
- The default path is `algorithm="auto"`:
|
|
146
|
+
- The default path is `algorithm="auto"`: Traigent smart optimization when portal credentials are available, with trials executing in your process.
|
|
147
147
|
- Set `TRAIGENT_REQUIRE_CLOUD=1` to turn that connectivity fallback into a hard error.
|
|
148
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.
|
|
149
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.
|
|
150
150
|
- `ParallelConfig` lives in `traigent.config.parallel`. You can pass either an instance or a simple `dict` with the same keys.
|
|
151
|
-
- Use `offline=True` when policy requires zero Traigent backend egress. `
|
|
152
|
-
- `
|
|
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.
|
|
153
153
|
- `config_param` is required whenever you choose `injection_mode="parameter"`; forgetting it leaves your function without injected configs.
|
|
154
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.
|
|
155
155
|
- Inline tuned-variable definitions accept `Range`, `IntRange`, `LogRange`, `Choices`, or numeric `(low, high)` tuples. Inline lists are not recognized; use `Choices([...])` instead.
|
|
@@ -180,8 +180,6 @@ Later scopes override earlier ones field-by-field. The runtime resolution logs t
|
|
|
180
180
|
"temperature": (0.0, 1.0)
|
|
181
181
|
},
|
|
182
182
|
evaluation={"eval_dataset": "evals.jsonl"}, # Grouped option bundle
|
|
183
|
-
algorithm="grid",
|
|
184
|
-
offline=True,
|
|
185
183
|
)
|
|
186
184
|
def my_agent(query: str) -> str:
|
|
187
185
|
return process_query(query)
|
|
@@ -220,7 +218,7 @@ async def optimize(
|
|
|
220
218
|
|
|
221
219
|
| Parameter | Type | Default | Description |
|
|
222
220
|
| --- | --- | --- | --- |
|
|
223
|
-
| `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. |
|
|
224
222
|
| `max_trials` | `int \| None` | Decorator default | Maximum number of trials to execute. `None` means unlimited. |
|
|
225
223
|
| `timeout` | `float \| None` | Decorator default | Wall-clock budget in seconds. |
|
|
226
224
|
| `save_to` | `str \| None` | `None` | Optional path to persist results after completion. |
|
|
@@ -256,8 +254,8 @@ Unknown keys are forwarded to the optimizer and may raise errors when unsupporte
|
|
|
256
254
|
|
|
257
255
|
**Example:**
|
|
258
256
|
```python
|
|
259
|
-
# Run optimization
|
|
260
|
-
result = await my_agent.optimize(
|
|
257
|
+
# Run optimization with the default smart optimizer
|
|
258
|
+
result = await my_agent.optimize(max_trials=50)
|
|
261
259
|
|
|
262
260
|
# Save results
|
|
263
261
|
await my_agent.save_optimization_results("results.json")
|
|
@@ -505,8 +505,8 @@ from traigent.config.parallel import ParallelConfig
|
|
|
505
505
|
|
|
506
506
|
**ExecutionOptions Fields**:
|
|
507
507
|
|
|
508
|
-
- `algorithm`: optimizer selector. `"auto"` is
|
|
509
|
-
- `offline`: force local-only operation with zero Traigent backend egress
|
|
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.
|
|
510
510
|
- `local_storage_path`: Custom storage directory
|
|
511
511
|
- `minimal_logging`: Reduce log verbosity
|
|
512
512
|
- `parallel_config`: Concurrency configuration
|
|
@@ -514,7 +514,7 @@ from traigent.config.parallel import ParallelConfig
|
|
|
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
|
-
- `evaluator`: external evaluator bundle
|
|
517
|
+
- `evaluator`: external evaluator bundle for API-contract integrations. This does not change optimizer routing; it only changes how each trial is evaluated.
|
|
518
518
|
|
|
519
519
|
#### `mock`
|
|
520
520
|
|
|
@@ -564,11 +564,8 @@ The `**runtime_overrides` parameter accepts additional settings:
|
|
|
564
564
|
)
|
|
565
565
|
```
|
|
566
566
|
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
- `execution_mode=` is deprecated compatibility input only; migrate to `algorithm=` / `offline=`.
|
|
570
|
-
- `privacy_enabled` is a deprecated no-op. Cloud-brain optimization already avoids dataset-content egress; use `offline=True` for zero Traigent backend egress.
|
|
571
|
-
- `cloud_fallback_policy` is a deprecated no-op. Use `TRAIGENT_REQUIRE_CLOUD=1` to disable `algorithm="auto"` fallback.
|
|
567
|
+
Legacy `execution_mode=` inputs are deprecated compatibility shims. Use
|
|
568
|
+
`algorithm=` and `offline=` for new code.
|
|
572
569
|
|
|
573
570
|
Run controls such as `max_trials` and `timeout` are passed to `.optimize()`:
|
|
574
571
|
|
|
@@ -647,15 +644,13 @@ def answer_question(question: str) -> str:
|
|
|
647
644
|
lambda cfg, metrics: metrics.get("cost", 0) <= 0.10 if metrics else True,
|
|
648
645
|
],
|
|
649
646
|
evaluation={"eval_dataset": "support_tickets.jsonl"},
|
|
650
|
-
algorithm="grid",
|
|
651
|
-
offline=True,
|
|
652
647
|
parallel_config={"thread_workers": 4},
|
|
653
648
|
)
|
|
654
649
|
def process_ticket(ticket: str) -> str:
|
|
655
650
|
return support_chain.run(ticket)
|
|
656
651
|
```
|
|
657
652
|
|
|
658
|
-
###
|
|
653
|
+
### No-Egress Local Storage
|
|
659
654
|
|
|
660
655
|
```python
|
|
661
656
|
@traigent.optimize(
|
|
@@ -702,7 +697,7 @@ def my_agent(query: str) -> str:
|
|
|
702
697
|
- [Complete Function Specification](./complete-function-specification.md) - Full API reference
|
|
703
698
|
- [Evaluation Guide](../user-guide/evaluation_guide.md) - Understanding accuracy metrics, evaluation methods, and troubleshooting
|
|
704
699
|
- [Injection Modes Guide](../user-guide/injection_modes.md) - Configuration injection patterns
|
|
705
|
-
- [Choosing the Right Optimization Model](../user-guide/choosing_optimization_model.md) -
|
|
700
|
+
- [Choosing the Right Optimization Model](../user-guide/choosing_optimization_model.md) - Default smart optimization, local search, no-egress runs, and migration guidance
|
|
706
701
|
- [Thread Pool Examples](./thread-pool-examples.md) - Context propagation with threads
|
|
707
|
-
- [Telemetry Documentation](./telemetry.md) - Data collection and
|
|
702
|
+
- [Telemetry Documentation](./telemetry.md) - Data collection and no-egress controls
|
|
708
703
|
- Custom evaluator walkthrough in the repository examples - LLM-as-Judge implementation
|
|
@@ -45,9 +45,9 @@ Traigent does **not** collect:
|
|
|
45
45
|
- **API keys or credentials**
|
|
46
46
|
- **Source code or function implementations**
|
|
47
47
|
|
|
48
|
-
###
|
|
48
|
+
### Data Boundary and No-Egress Runs
|
|
49
49
|
|
|
50
|
-
The
|
|
50
|
+
The default portal-backed path sends configuration identifiers and numeric metrics. It
|
|
51
51
|
does not send dataset example inputs, expected outputs, prompts, responses, or
|
|
52
52
|
example metadata. Use `offline=True` when your policy requires no Traigent
|
|
53
53
|
backend egress at all:
|
|
@@ -60,17 +60,11 @@ backend egress at all:
|
|
|
60
60
|
)
|
|
61
61
|
```
|
|
62
62
|
|
|
63
|
-
|
|
63
|
+
No-egress runs keep Traigent optimization metadata local while still allowing your
|
|
64
64
|
own function to call LLM providers or other services.
|
|
65
65
|
|
|
66
|
-
`
|
|
67
|
-
zero
|
|
68
|
-
`algorithm="auto"` must hard-error instead of falling back locally.
|
|
69
|
-
|
|
70
|
-
`privacy_enabled` is deprecated and does not disable telemetry or network
|
|
71
|
-
access. The default cloud-brain path is already content-free. Use
|
|
72
|
-
`TRAIGENT_DISABLE_TELEMETRY=true` for telemetry opt-out and `offline=True` for
|
|
73
|
-
zero Traigent backend egress.
|
|
66
|
+
Use `TRAIGENT_DISABLE_TELEMETRY=true` for telemetry opt-out and `offline=True`
|
|
67
|
+
for zero Traigent backend egress.
|
|
74
68
|
|
|
75
69
|
### OpenTelemetry Tracing
|
|
76
70
|
|
|
@@ -127,13 +121,13 @@ Telemetry data is used for:
|
|
|
127
121
|
|
|
128
122
|
## Data Retention
|
|
129
123
|
|
|
130
|
-
**
|
|
124
|
+
**No-egress runs**:
|
|
131
125
|
- All data is stored **locally** on your machine
|
|
132
126
|
- Data is kept in `~/.traigent/` or your specified `local_storage_path`
|
|
133
127
|
- You control retention - delete files as needed
|
|
134
128
|
- No data is sent to the Traigent backend
|
|
135
129
|
|
|
136
|
-
**
|
|
130
|
+
**Portal-backed runs**:
|
|
137
131
|
- Configuration IDs/schema and numeric metrics can be sent to Traigent backend for optimization coordination
|
|
138
132
|
- Retention policies depend on your managed-service agreement
|
|
139
133
|
- You can request data deletion at any time
|
|
@@ -240,7 +234,7 @@ Each event includes:
|
|
|
240
234
|
|
|
241
235
|
## Local Storage Structure
|
|
242
236
|
|
|
243
|
-
When using offline
|
|
237
|
+
When using `offline=True`, data is stored locally:
|
|
244
238
|
|
|
245
239
|
```
|
|
246
240
|
~/.traigent/
|
|
@@ -274,8 +268,7 @@ example record includes the input **query**, the model **response**, and the
|
|
|
274
268
|
> cards, API keys / bearer tokens, etc.). Free-text content in prompts and
|
|
275
269
|
> responses (names, addresses, proprietary data) is stored **verbatim**.
|
|
276
270
|
|
|
277
|
-
To keep ids and metrics while omitting that content
|
|
278
|
-
privacy mode — disable content logging:
|
|
271
|
+
To keep ids and metrics while omitting that content, disable content logging:
|
|
279
272
|
|
|
280
273
|
```bash
|
|
281
274
|
export TRAIGENT_LOG_EXAMPLE_CONTENT=false # also accepts 0 / no / off
|
|
@@ -287,7 +280,7 @@ and `error`, but `query` / `response` / `expected` are `null`.
|
|
|
287
280
|
|
|
288
281
|
Traigent writes a `.gitignore` (`*`) into the log root so this content is not
|
|
289
282
|
accidentally committed, but you should still keep `.traigent/` out of version
|
|
290
|
-
control and CI artifact collection in
|
|
283
|
+
control and CI artifact collection in sensitive projects.
|
|
291
284
|
|
|
292
285
|
## Telemetry Listeners
|
|
293
286
|
|
|
@@ -308,7 +301,7 @@ emitter.subscribe(my_listener)
|
|
|
308
301
|
# (unless TRAIGENT_DISABLE_TELEMETRY is set)
|
|
309
302
|
```
|
|
310
303
|
|
|
311
|
-
## Security and
|
|
304
|
+
## Security and Sensitive Data
|
|
312
305
|
|
|
313
306
|
### Data Sanitization
|
|
314
307
|
|
|
@@ -357,7 +350,7 @@ Traigent SDK is designed to be GDPR-compliant:
|
|
|
357
350
|
|
|
358
351
|
For HIPAA compliance or handling sensitive data:
|
|
359
352
|
|
|
360
|
-
1. **Use
|
|
353
|
+
1. **Use `offline=True` for Zero Traigent Egress**:
|
|
361
354
|
```python
|
|
362
355
|
@traigent.optimize(
|
|
363
356
|
algorithm="grid",
|
|
@@ -387,7 +380,7 @@ For HIPAA compliance or handling sensitive data:
|
|
|
387
380
|
|
|
388
381
|
### Q: Is telemetry enabled by default?
|
|
389
382
|
|
|
390
|
-
**A**: Yes, for local optimization metadata. The default
|
|
383
|
+
**A**: Yes, for local optimization metadata. The default portal-backed path sends
|
|
391
384
|
configuration IDs/schema and numeric metrics only; use `offline=True` for zero
|
|
392
385
|
Traigent backend egress.
|
|
393
386
|
|
|
@@ -415,7 +408,7 @@ Use `offline=True` when you need to disable Traigent backend egress for a run.
|
|
|
415
408
|
|
|
416
409
|
### Q: Where can I see what telemetry data was collected?
|
|
417
410
|
|
|
418
|
-
**A**:
|
|
411
|
+
**A**: With `offline=True`, check the JSON files in `~/.traigent/sessions/`. They
|
|
419
412
|
contain the same trial metadata and metrics emitted to telemetry listeners.
|
|
420
413
|
|
|
421
414
|
### Q: Can I contribute telemetry data to improve Traigent?
|
|
@@ -425,6 +418,6 @@ contain the same trial metadata and metrics emitted to telemetry listeners.
|
|
|
425
418
|
## Related Documentation
|
|
426
419
|
|
|
427
420
|
- [Decorator Reference](./decorator-reference.md) - Configuration options
|
|
428
|
-
- [Choosing the Right Optimization Model](../user-guide/choosing_optimization_model.md) -
|
|
429
|
-
- [
|
|
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
|
|
430
423
|
- [API Reference](./complete-function-specification.md) - Full API documentation
|
|
@@ -9,9 +9,9 @@ Traigent is a zero-code LLM optimization SDK that automatically finds the best c
|
|
|
9
9
|
- **Parameter Optimization**: Automatically tune model selection, temperature, prompts, and other parameters
|
|
10
10
|
- **Multi-Objective Optimization**: Balance accuracy, cost, latency, and other metrics simultaneously
|
|
11
11
|
- **Framework Integration**: Native support for LangChain, DSPy, OpenAI, Anthropic, and more
|
|
12
|
-
- **Flexible
|
|
13
|
-
`algorithm="grid"` / `"random"
|
|
14
|
-
|
|
12
|
+
- **Flexible Routing**: Most users omit routing settings. Use
|
|
13
|
+
`algorithm="grid"` / `"random"` for explicit local search, or `offline=True`
|
|
14
|
+
for zero Traigent backend egress.
|
|
15
15
|
- **TVL Specifications**: Define optimization specs in YAML for version control and collaboration
|
|
16
16
|
|
|
17
17
|
---
|
|
@@ -192,38 +192,35 @@ flowchart LR
|
|
|
192
192
|
|
|
193
193
|
---
|
|
194
194
|
|
|
195
|
-
##
|
|
195
|
+
## Optimization Routing
|
|
196
196
|
|
|
197
197
|
```mermaid
|
|
198
198
|
flowchart TB
|
|
199
|
-
subgraph
|
|
199
|
+
subgraph DefaultPath["Default"]
|
|
200
200
|
direction TB
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
ea_opt["Local Optimizer"]
|
|
201
|
+
default_desc["Smart optimizer<br/>No routing settings<br/>Portal sync when authenticated"]
|
|
202
|
+
default_portal["Traigent Portal"]
|
|
204
203
|
end
|
|
205
204
|
|
|
206
|
-
subgraph
|
|
205
|
+
subgraph LocalSearch["Local Search"]
|
|
207
206
|
direction TB
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
cloud_storage["Future Cloud Storage"]
|
|
207
|
+
local_desc["Grid or random<br/>Trials run in your process<br/>Portal sync when authenticated"]
|
|
208
|
+
local_opt["Local Optimizer"]
|
|
211
209
|
end
|
|
212
210
|
|
|
213
|
-
subgraph
|
|
211
|
+
subgraph NoEgress["No-Egress Run"]
|
|
214
212
|
direction TB
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
hybrid_sync["Backend Sync"]
|
|
213
|
+
noegress_desc["offline=True<br/>Local optimizer<br/>No portal sync"]
|
|
214
|
+
local_store["Local Results"]
|
|
218
215
|
end
|
|
219
216
|
|
|
220
|
-
User["Your Application"] -->
|
|
221
|
-
User -->
|
|
222
|
-
User -->
|
|
217
|
+
User["Your Application"] --> DefaultPath
|
|
218
|
+
User --> LocalSearch
|
|
219
|
+
User --> NoEgress
|
|
223
220
|
|
|
224
|
-
style
|
|
225
|
-
style
|
|
226
|
-
style
|
|
221
|
+
style DefaultPath fill:#e3f2fd,stroke:#1565c0
|
|
222
|
+
style LocalSearch fill:#e8f5e9,stroke:#2e7d32
|
|
223
|
+
style NoEgress fill:#fff3e0,stroke:#ef6c00
|
|
227
224
|
```
|
|
228
225
|
|
|
229
226
|
---
|
|
@@ -155,7 +155,7 @@ df = results.to_dataframe()
|
|
|
155
155
|
`successful_trials` is a list of successful `TrialResult` objects. Use
|
|
156
156
|
`len(results.successful_trials)` when you need a count.
|
|
157
157
|
|
|
158
|
-
`results.source` tells you which
|
|
158
|
+
`results.source` tells you which routing path ran:
|
|
159
159
|
`cloud_brain`, `local_fallback`, `explicit_local`, or `offline`.
|
|
160
160
|
|
|
161
161
|
## Progressive Runs
|
|
@@ -177,35 +177,10 @@ refined = await answer.optimize(
|
|
|
177
177
|
|
|
178
178
|
## External Service Evaluator
|
|
179
179
|
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
`
|
|
183
|
-
|
|
184
|
-
service.
|
|
185
|
-
|
|
186
|
-
```python
|
|
187
|
-
from traigent.api.decorators import ExternalServiceEvaluator, HybridAPIOptions
|
|
188
|
-
|
|
189
|
-
@traigent.optimize(
|
|
190
|
-
evaluator=ExternalServiceEvaluator(
|
|
191
|
-
hybrid_api=HybridAPIOptions(
|
|
192
|
-
endpoint="http://localhost:8080",
|
|
193
|
-
transport_type="http",
|
|
194
|
-
)
|
|
195
|
-
),
|
|
196
|
-
configuration_space={"temperature": [0.0, 0.3]},
|
|
197
|
-
eval_dataset="data/eval.jsonl",
|
|
198
|
-
scoring_function=my_score,
|
|
199
|
-
)
|
|
200
|
-
def external_agent(_query: str) -> str:
|
|
201
|
-
return ""
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
results = await external_agent.optimize(max_trials=10)
|
|
205
|
-
```
|
|
206
|
-
|
|
207
|
-
Because the optimizer is local in this setup, successful runs report
|
|
208
|
-
`results.source == "explicit_local"`.
|
|
180
|
+
External-service API contract integrations are documented separately. They do
|
|
181
|
+
not change optimization routing: use the default smart optimizer for most runs,
|
|
182
|
+
`algorithm="grid"` / `"random"` for local search, and `offline=True` only for
|
|
183
|
+
zero Traigent backend egress.
|
|
209
184
|
|
|
210
185
|
## Multi-Field Evaluation Inputs
|
|
211
186
|
|
|
@@ -25,7 +25,7 @@ Outcome: you can run examples, read metrics, and tweak configuration spaces.
|
|
|
25
25
|
Outcome: you can constrain costs, add guardrails, and tune prompts.
|
|
26
26
|
|
|
27
27
|
## Week 3: Advanced exploration (researcher)
|
|
28
|
-
1.
|
|
28
|
+
1. Optimization routing: `examples/advanced/optimization-routing/` (local search and no-egress examples)
|
|
29
29
|
2. Context engineering & RAG eval: `examples/advanced/ai-engineering-tasks/p0_context_engineering/` and `examples/advanced/ragas/`
|
|
30
30
|
3. Metrics and analysis: `examples/advanced/results-analysis/` and `examples/advanced/metric-registry/`
|
|
31
31
|
4. CI/CD integration: `examples/integrations/ci-cd/`
|
|
@@ -30,12 +30,11 @@ def summarize(text: str) -> str:
|
|
|
30
30
|
return f"Summary | model={cfg['model']}" # call your LLM here
|
|
31
31
|
```
|
|
32
32
|
|
|
33
|
-
##
|
|
34
|
-
-
|
|
35
|
-
- `algorithm="grid"` / `"random"`
|
|
33
|
+
## Optimization routing
|
|
34
|
+
- Omit routing settings for the default smart optimizer and portal sync.
|
|
35
|
+
- `algorithm="grid"` / `"random"` runs local search and still syncs results when authenticated.
|
|
36
36
|
- Smart algorithms such as `bayesian`, `tpe`, `optuna_tpe`, `nsga2`, and `cmaes` are cloud-only and hard-error if unavailable.
|
|
37
|
-
- `offline=True
|
|
38
|
-
- `TRAIGENT_REQUIRE_CLOUD=1` - disables the automatic local fallback for `algorithm="auto"`.
|
|
37
|
+
- `offline=True` is the zero Traigent backend egress path and does not sync to the portal.
|
|
39
38
|
- Result provenance: `result.source` is `cloud_brain`, `local_fallback`, `explicit_local`, or `offline`.
|
|
40
39
|
- Mock: call `traigent.testing.enable_mock_mode_for_quickstart()` in local tutorial code.
|
|
41
40
|
|