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.
Files changed (637) hide show
  1. {traigent-0.15.0 → traigent-0.16.0.dev0}/CHANGELOG.md +0 -13
  2. {traigent-0.15.0/traigent.egg-info → traigent-0.16.0.dev0}/PKG-INFO +20 -19
  3. {traigent-0.15.0 → traigent-0.16.0.dev0}/README.md +19 -18
  4. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/README.md +1 -1
  5. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/complete-function-specification.md +10 -12
  6. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/decorator-reference.md +8 -13
  7. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/telemetry.md +16 -23
  8. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/ARCHITECTURE.md +19 -22
  9. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/API_PATTERNS.md +5 -30
  10. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/LEARNING_ROADMAP.md +1 -1
  11. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/QUICK_REFERENCE.md +4 -5
  12. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/GETTING_STARTED.md +13 -31
  13. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/evaluation.md +1 -1
  14. traigent-0.16.0.dev0/docs/guides/execution-mode-migration.md +34 -0
  15. traigent-0.16.0.dev0/docs/guides/execution-modes.md +97 -0
  16. traigent-0.16.0.dev0/docs/user-guide/choosing_optimization_model.md +95 -0
  17. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/walkthrough.md +1 -1
  18. {traigent-0.15.0 → traigent-0.16.0.dev0}/pyproject.toml +1 -1
  19. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/__init__.py +15 -4
  20. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/__init__.py +10 -1
  21. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/decorators.py +45 -31
  22. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/auth_commands.py +10 -2
  23. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/function_discovery.py +21 -14
  24. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/local_commands.py +85 -43
  25. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/main.py +79 -11
  26. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/optimization_validator.py +37 -2
  27. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/sync_commands.py +6 -6
  28. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/api_operations.py +47 -5
  29. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/session_operations.py +21 -6
  30. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/sync_manager.py +76 -8
  31. traigent-0.16.0.dev0/traigent/config/__init__.py +70 -0
  32. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/types.py +247 -72
  33. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/backend_session_manager.py +14 -0
  34. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/execution_policy_runtime.py +0 -2
  35. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/optimized_function.py +1 -4
  36. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/orchestrator.py +22 -12
  37. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/session_types.py +15 -2
  38. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__main__.py +3 -4
  39. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/_env.py +6 -11
  40. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/slow_update.py +3 -2
  41. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/splits.py +5 -3
  42. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/input_validation.py +5 -7
  43. {traigent-0.15.0 → traigent-0.16.0.dev0/traigent.egg-info}/PKG-INFO +20 -19
  44. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/SOURCES.txt +0 -1
  45. traigent-0.15.0/docs/guides/execution-mode-migration.md +0 -124
  46. traigent-0.15.0/docs/guides/execution-modes.md +0 -199
  47. traigent-0.15.0/docs/user-guide/choosing_optimization_model.md +0 -152
  48. traigent-0.15.0/traigent/config/__init__.py +0 -49
  49. traigent-0.15.0/traigent/generation/skill_train/_deterministic_indices.py +0 -33
  50. {traigent-0.15.0 → traigent-0.16.0.dev0}/COMMERCIAL-LICENSE.md +0 -0
  51. {traigent-0.15.0 → traigent-0.16.0.dev0}/CONTRIBUTING.md +0 -0
  52. {traigent-0.15.0 → traigent-0.16.0.dev0}/CONTRIBUTOR-LICENSING.md +0 -0
  53. {traigent-0.15.0 → traigent-0.16.0.dev0}/DISCLAIMER.md +0 -0
  54. {traigent-0.15.0 → traigent-0.16.0.dev0}/LICENSE +0 -0
  55. {traigent-0.15.0 → traigent-0.16.0.dev0}/MANIFEST.in +0 -0
  56. {traigent-0.15.0 → traigent-0.16.0.dev0}/NOTICE +0 -0
  57. {traigent-0.15.0 → traigent-0.16.0.dev0}/SECURITY.md +0 -0
  58. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/LOCAL_CI_GATE.md +0 -0
  59. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/SYNC_MAP.md +0 -0
  60. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/agent-skill.md +0 -0
  61. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/enterprise-beta-api.md +0 -0
  62. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/interactive_optimizer.md +0 -0
  63. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/api-reference/thread-pool-examples.md +0 -0
  64. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/cost-architecture-validation.md +0 -0
  65. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/execution_mode_follow_up.md +0 -0
  66. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/integrations-inventory.md +0 -0
  67. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/plugin_architecture.md +0 -0
  68. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/project-structure.md +0 -0
  69. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/architecture/stop_conditions.md +0 -0
  70. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/composite-knob-ir.md +0 -0
  71. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/composite-knobs.md +0 -0
  72. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/concepts/guided-generation.md +0 -0
  73. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/ADDING_NEW_INTEGRATIONS.md +0 -0
  74. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/CODE_OF_CONDUCT.md +0 -0
  75. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/CONTRIBUTING.md +0 -0
  76. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/EXAMPLE_TEMPLATE.md +0 -0
  77. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/README.md +0 -0
  78. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/SECURITY.md +0 -0
  79. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/aikido_triage.md +0 -0
  80. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/code_review_instructions.md +0 -0
  81. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/contributing/test-quality-guide.md +0 -0
  82. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/demos/DEMO_VIDEO_GUIDE.md +0 -0
  83. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/demos/README.md +0 -0
  84. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/README.md +0 -0
  85. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/START_HERE.md +0 -0
  86. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/examples/TROUBLESHOOTING.md +0 -0
  87. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/fake-completion-tracking.md +0 -0
  88. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/feature_matrices/README.md +0 -0
  89. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/README.md +0 -0
  90. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/authentication.md +0 -0
  91. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/constraint-dsl.md +0 -0
  92. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/dataflow-detection.md +0 -0
  93. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/framework_override_enhanced_features.md +0 -0
  94. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/mcp-server.md +0 -0
  95. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/observability-spans.md +0 -0
  96. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/onboarding.md +0 -0
  97. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/prompt_management.md +0 -0
  98. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/recommendations.md +0 -0
  99. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/safety-gates.md +0 -0
  100. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/seamless_injection.md +0 -0
  101. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/strategy-presets.md +0 -0
  102. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/features/strict_metrics_nulls.md +0 -0
  103. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/README.md +0 -0
  104. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/installation.md +0 -0
  105. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/minimal-integration.md +0 -0
  106. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/portal-dev-laptop-agent.md +0 -0
  107. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/getting-started/testing.md +0 -0
  108. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/VSCODE_RESTART_GUIDE.md +0 -0
  109. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/js-bridge.md +0 -0
  110. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/llm_plugin_migration_guide.md +0 -0
  111. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/parallel-configuration.md +0 -0
  112. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/guides/secrets_management.md +0 -0
  113. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/hybrid-mode-api-contract.md +0 -0
  114. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/hybrid-mode-client-guide.md +0 -0
  115. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/azure_openai.md +0 -0
  116. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/bedrock.md +0 -0
  117. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/operations/google_gemini.md +0 -0
  118. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/security/trust_model.md +0 -0
  119. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/testing/CREATIVE_STRESS_TESTING.md +0 -0
  120. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/composite-knob-ir.md +0 -0
  121. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/composite-knobs.md +0 -0
  122. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/concepts/guided-generation.md +0 -0
  123. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/schema.md +0 -0
  124. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/tagging_tracking.md +0 -0
  125. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/traceability/taxonomy_reference.md +0 -0
  126. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/tvl/CONSTRAINT_EXPRESSIONS.md +0 -0
  127. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/README.md +0 -0
  128. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/agent_optimization.md +0 -0
  129. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/configuration-spaces.md +0 -0
  130. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/evaluation_guide.md +0 -0
  131. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/injection_modes.md +0 -0
  132. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/interactive_optimization.md +0 -0
  133. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/optuna_integration.md +0 -0
  134. {traigent-0.15.0 → traigent-0.16.0.dev0}/docs/user-guide/tuned_variables.md +0 -0
  135. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-all.txt +0 -0
  136. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-analytics.txt +0 -0
  137. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-bayesian.txt +0 -0
  138. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-chroma.txt +0 -0
  139. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-dev.txt +0 -0
  140. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-hybrid.txt +0 -0
  141. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-integrations.txt +0 -0
  142. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-security.txt +0 -0
  143. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements-test.txt +0 -0
  144. {traigent-0.15.0 → traigent-0.16.0.dev0}/requirements/requirements.txt +0 -0
  145. {traigent-0.15.0 → traigent-0.16.0.dev0}/setup.cfg +0 -0
  146. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/_version.py +0 -0
  147. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/adapters/execution_adapter.py +0 -0
  148. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/__init__.py +0 -0
  149. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/client.py +0 -0
  150. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/config.py +0 -0
  151. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/admin/dtos.py +0 -0
  152. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/__init__.py +0 -0
  153. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/config_mapper.py +0 -0
  154. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/executor.py +0 -0
  155. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/platforms.py +0 -0
  156. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/agents/specification_generator.py +0 -0
  157. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/__init__.py +0 -0
  158. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/anomaly.py +0 -0
  159. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/cost_optimization.py +0 -0
  160. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/example_insights.py +0 -0
  161. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/intelligence.py +0 -0
  162. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/meta_learning.py +0 -0
  163. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/next_steps.py +0 -0
  164. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/predictive.py +0 -0
  165. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/analytics/scheduling.py +0 -0
  166. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/agent_inference.py +0 -0
  167. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/config_builder.py +0 -0
  168. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/config_space.py +0 -0
  169. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/constraint_builders.py +0 -0
  170. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/constraints.py +0 -0
  171. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/functions.py +0 -0
  172. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/parameter_ranges.py +0 -0
  173. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/parameter_validator.py +0 -0
  174. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/safety.py +0 -0
  175. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/strategy_presets.py +0 -0
  176. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/types.py +0 -0
  177. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/api/validation_protocol.py +0 -0
  178. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/__init__.py +0 -0
  179. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/detect_tvars_command.py +0 -0
  180. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/generate_config_command.py +0 -0
  181. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/hooks_commands.py +0 -0
  182. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/next_steps_command.py +0 -0
  183. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/onboard_commands.py +0 -0
  184. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/playbook_commands.py +0 -0
  185. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cli/validation_types.py +0 -0
  186. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/__init__.py +0 -0
  187. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/_aiohttp_compat.py +0 -0
  188. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/agent_dtos.py +0 -0
  189. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/api_key_manager.py +0 -0
  190. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/async_batch_transport.py +0 -0
  191. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/auth.py +0 -0
  192. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_bridges.py +0 -0
  193. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_client.py +0 -0
  194. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_components.py +0 -0
  195. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/backend_synchronizer.py +0 -0
  196. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/benchmark_client.py +0 -0
  197. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/billing.py +0 -0
  198. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/client.py +0 -0
  199. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/cloud_operations.py +0 -0
  200. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/credential_manager.py +0 -0
  201. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/credential_resolver.py +0 -0
  202. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/dataset_converter.py +0 -0
  203. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/dtos.py +0 -0
  204. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/event_manager.py +0 -0
  205. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/governance.py +0 -0
  206. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/integration_manager.py +0 -0
  207. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/models.py +0 -0
  208. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/optimizer_client.py +0 -0
  209. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/password_auth_handler.py +0 -0
  210. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/privacy_operations.py +0 -0
  211. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/production_mcp_client.py +0 -0
  212. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/remote_guidance.py +0 -0
  213. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/resilient_client.py +0 -0
  214. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/service.py +0 -0
  215. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/session_types.py +0 -0
  216. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/sessions.py +0 -0
  217. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/subset_selection.py +0 -0
  218. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/token_manager.py +0 -0
  219. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/trial_operations.py +0 -0
  220. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/trial_tracker.py +0 -0
  221. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/url_security.py +0 -0
  222. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/cloud/validators.py +0 -0
  223. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/api_keys.py +0 -0
  224. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/ast_transformer.py +0 -0
  225. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/backend_config.py +0 -0
  226. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/context.py +0 -0
  227. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/feature_flags.py +0 -0
  228. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/models.yaml +0 -0
  229. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/parallel.py +0 -0
  230. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/project.py +0 -0
  231. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/providers.py +0 -0
  232. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/runtime_injector.py +0 -0
  233. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/seamless_injection.py +0 -0
  234. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/seamless_optuna_adapter.py +0 -0
  235. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config/tenant.py +0 -0
  236. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/__init__.py +0 -0
  237. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/agent_classifier.py +0 -0
  238. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/apply.py +0 -0
  239. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_catalog_entry_schema.json +0 -0
  240. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_observation_schema.json +0 -0
  241. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/schemas/tvar_value_recommendation_schema.json +0 -0
  242. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog/tvar_catalog.v1.json +0 -0
  243. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/catalog.py +0 -0
  244. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/llm_backend.py +0 -0
  245. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/pipeline.py +0 -0
  246. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/__init__.py +0 -0
  247. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/agent_type_catalog.py +0 -0
  248. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/benchmark_catalog.py +0 -0
  249. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/constraint_templates.py +0 -0
  250. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/presets/range_presets.py +0 -0
  251. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/recommendations.py +0 -0
  252. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/__init__.py +0 -0
  253. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/benchmarks.py +0 -0
  254. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/objectives.py +0 -0
  255. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/safety_constraints.py +0 -0
  256. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/structural_constraints.py +0 -0
  257. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_ranges.py +0 -0
  258. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/subsystems/tvar_recommendations.py +0 -0
  259. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/config_generator/types.py +0 -0
  260. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/__init__.py +0 -0
  261. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/best_config_runtime.py +0 -0
  262. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cache_policy.py +0 -0
  263. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/ci_approval.py +0 -0
  264. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/config_builder.py +0 -0
  265. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/config_state_manager.py +0 -0
  266. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/constants.py +0 -0
  267. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cost_enforcement.py +0 -0
  268. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/cost_estimator.py +0 -0
  269. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/evaluator_wrapper.py +0 -0
  270. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/exception_handler.py +0 -0
  271. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/license.py +0 -0
  272. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/llm_processor.py +0 -0
  273. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/logger_facade.py +0 -0
  274. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/mandatory_metrics.py +0 -0
  275. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/meta_types.py +0 -0
  276. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metadata_helpers.py +0 -0
  277. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metric_registry.py +0 -0
  278. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/metrics_aggregator.py +0 -0
  279. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/namespace.py +0 -0
  280. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/objectives.py +0 -0
  281. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/optimization_pipeline.py +0 -0
  282. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/orchestrator_helpers.py +0 -0
  283. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/parallel_execution_manager.py +0 -0
  284. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/progress_manager.py +0 -0
  285. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/pruning_progress_tracker.py +0 -0
  286. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/refactoring_utils.py +0 -0
  287. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/result_selection.py +0 -0
  288. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/sample_budget.py +0 -0
  289. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/samplers/__init__.py +0 -0
  290. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/samplers/random_sampler.py +0 -0
  291. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/session_context.py +0 -0
  292. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stat_significance.py +0 -0
  293. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stop_condition_manager.py +0 -0
  294. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/stop_conditions.py +0 -0
  295. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trace_env.py +0 -0
  296. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/tracing.py +0 -0
  297. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_context.py +0 -0
  298. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_lifecycle.py +0 -0
  299. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/trial_result_factory.py +0 -0
  300. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/types.py +0 -0
  301. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/types_ext.py +0 -0
  302. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/utils.py +0 -0
  303. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core/workflow_trace_manager.py +0 -0
  304. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/__init__.py +0 -0
  305. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/client.py +0 -0
  306. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/config.py +0 -0
  307. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/core_metrics/dtos.py +0 -0
  308. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/__init__.py +0 -0
  309. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/contracts.py +0 -0
  310. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/__init__.py +0 -0
  311. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/framework_param.py +0 -0
  312. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/effectuation/strategies/self_consistency.py +0 -0
  313. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/__init__.py +0 -0
  314. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/client.py +0 -0
  315. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/config.py +0 -0
  316. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluation/dtos.py +0 -0
  317. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/__init__.py +0 -0
  318. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/base.py +0 -0
  319. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/metric_eval_catalog.v1.json +0 -0
  320. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog/schemas/metric_eval_catalog_entry_schema.json +0 -0
  321. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/catalog_loader.py +0 -0
  322. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/dataset_registry.py +0 -0
  323. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/hybrid_api.py +0 -0
  324. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/local.py +0 -0
  325. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/metrics.py +0 -0
  326. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/metrics_tracker.py +0 -0
  327. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/evaluators/recommendations.py +0 -0
  328. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/__init__.py +0 -0
  329. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/__init__.py +0 -0
  330. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/_bootstrap.py +0 -0
  331. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/_demo.py +0 -0
  332. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/anthropic.py +0 -0
  333. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/aws.py +0 -0
  334. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/azure.py +0 -0
  335. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/gcp.py +0 -0
  336. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/gemini.py +0 -0
  337. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/groq.py +0 -0
  338. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/litellm_any.py +0 -0
  339. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/manifest.json +0 -0
  340. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/openai.py +0 -0
  341. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/openrouter.py +0 -0
  342. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/providers/qa_samples.jsonl +0 -0
  343. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/__init__.py +0 -0
  344. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/quickstart/qa_samples.jsonl +0 -0
  345. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/examples/tutorial_bootstrap.py +0 -0
  346. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/__init__.py +0 -0
  347. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/backend_provider.py +0 -0
  348. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/example_synth.py +0 -0
  349. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/llm_provider.py +0 -0
  350. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/loop.py +0 -0
  351. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/models.py +0 -0
  352. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/options.py +0 -0
  353. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/prompt_rewriter.py +0 -0
  354. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/__init__.py +0 -0
  355. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/artifacts.py +0 -0
  356. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/buffer.py +0 -0
  357. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/document.py +0 -0
  358. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/edits.py +0 -0
  359. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/prompts.py +0 -0
  360. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/reflection.py +0 -0
  361. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/schedule.py +0 -0
  362. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer.py +0 -0
  363. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/skill_train/trainer_result.py +0 -0
  364. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/generation/validators.py +0 -0
  365. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/guaranteed_modes.py +0 -0
  366. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/__init__.py +0 -0
  367. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/config.py +0 -0
  368. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/installer.py +0 -0
  369. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hooks/validator.py +0 -0
  370. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/__init__.py +0 -0
  371. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/discovery.py +0 -0
  372. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/http_transport.py +0 -0
  373. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/lifecycle.py +0 -0
  374. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/mcp_transport.py +0 -0
  375. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/protocol.py +0 -0
  376. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/hybrid/transport.py +0 -0
  377. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/__init__.py +0 -0
  378. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/activation.py +0 -0
  379. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/base.py +0 -0
  380. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/base_plugin.py +0 -0
  381. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/batch_wrapper.py +0 -0
  382. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/bedrock_client.py +0 -0
  383. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/config.py +0 -0
  384. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/dspy_adapter.py +0 -0
  385. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/framework_override.py +0 -0
  386. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langchain/__init__.py +0 -0
  387. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langchain/handler.py +0 -0
  388. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/__init__.py +0 -0
  389. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/callback.py +0 -0
  390. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/client.py +0 -0
  391. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/langfuse/tracker.py +0 -0
  392. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/__init__.py +0 -0
  393. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/anthropic_plugin.py +0 -0
  394. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/azure_openai_plugin.py +0 -0
  395. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/base_llm_plugin.py +0 -0
  396. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/bedrock_plugin.py +0 -0
  397. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/cohere_plugin.py +0 -0
  398. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/gemini_plugin.py +0 -0
  399. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/huggingface_plugin.py +0 -0
  400. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/__init__.py +0 -0
  401. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/base.py +0 -0
  402. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain/discovery.py +0 -0
  403. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/langchain_plugin.py +0 -0
  404. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/litellm_plugin.py +0 -0
  405. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/llamaindex_plugin.py +0 -0
  406. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/mistral_plugin.py +0 -0
  407. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai.py +0 -0
  408. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/llms/openai_plugin.py +0 -0
  409. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/mappings.py +0 -0
  410. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/__init__.py +0 -0
  411. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/anthropic_discovery.py +0 -0
  412. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/azure_discovery.py +0 -0
  413. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/base.py +0 -0
  414. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/cache.py +0 -0
  415. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/gemini_discovery.py +0 -0
  416. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/mistral_discovery.py +0 -0
  417. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/openai_discovery.py +0 -0
  418. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/model_discovery/registry.py +0 -0
  419. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/__init__.py +0 -0
  420. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/mlflow.py +0 -0
  421. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/wandb.py +0 -0
  422. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/observability/workflow_traces.py +0 -0
  423. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/plugin_registry.py +0 -0
  424. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/providers.py +0 -0
  425. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/__init__.py +0 -0
  426. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/_types.py +0 -0
  427. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/handler.py +0 -0
  428. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/pydantic_ai/plugin.py +0 -0
  429. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/__init__.py +0 -0
  430. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/discovery.py +0 -0
  431. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/message_coercion.py +0 -0
  432. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/mock_adapter.py +0 -0
  433. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/parameter_normalizer.py +0 -0
  434. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/response_wrapper.py +0 -0
  435. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/validation.py +0 -0
  436. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/utils/version_compat.py +0 -0
  437. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/__init__.py +0 -0
  438. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/base.py +0 -0
  439. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/chromadb_plugin.py +0 -0
  440. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/pinecone_plugin.py +0 -0
  441. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/vector_stores/weaviate_plugin.py +0 -0
  442. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/integrations/wrappers.py +0 -0
  443. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/__init__.py +0 -0
  444. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/base.py +0 -0
  445. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/batch.py +0 -0
  446. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/local.py +0 -0
  447. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/invokers/streaming.py +0 -0
  448. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/__init__.py +0 -0
  449. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/adapters.py +0 -0
  450. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/bindings.py +0 -0
  451. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/canonical.py +0 -0
  452. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/cascade.py +0 -0
  453. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/certificates.py +0 -0
  454. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/composites.py +0 -0
  455. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/kinds.py +0 -0
  456. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/patterns.py +0 -0
  457. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/resolution.py +0 -0
  458. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/resolver.py +0 -0
  459. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/runtime.py +0 -0
  460. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/signals.py +0 -0
  461. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/knobs/telemetry.py +0 -0
  462. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/__init__.py +0 -0
  463. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/server.py +0 -0
  464. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/mcp/tools.py +0 -0
  465. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/__init__.py +0 -0
  466. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/agent_metrics.py +0 -0
  467. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/content_features.py +0 -0
  468. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/deepeval_metrics.py +0 -0
  469. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/ragas_metrics.py +0 -0
  470. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/metrics/registry.py +0 -0
  471. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/__init__.py +0 -0
  472. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/agent_spans.py +0 -0
  473. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/client.py +0 -0
  474. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/config.py +0 -0
  475. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/decorators.py +0 -0
  476. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/observability/dtos.py +0 -0
  477. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/__init__.py +0 -0
  478. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/base.py +0 -0
  479. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/batch_optimizers.py +0 -0
  480. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/benchmarking.py +0 -0
  481. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/cloud_optimizer.py +0 -0
  482. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/grid.py +0 -0
  483. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/interactive_optimizer.py +0 -0
  484. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_checkpoint.py +0 -0
  485. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/optuna_utils.py +0 -0
  486. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/pruners.py +0 -0
  487. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/random.py +0 -0
  488. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/registry.py +0 -0
  489. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/remote.py +0 -0
  490. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/remote_services.py +0 -0
  491. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/results.py +0 -0
  492. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/optimizers/service_registry.py +0 -0
  493. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/__init__.py +0 -0
  494. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/loader.py +0 -0
  495. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/model.py +0 -0
  496. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/scaffold.py +0 -0
  497. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/schemas/agent_playbook_schema.json +0 -0
  498. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/staleness.py +0 -0
  499. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/playbook/validator.py +0 -0
  500. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/plugins/__init__.py +0 -0
  501. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/plugins/registry.py +0 -0
  502. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/__init__.py +0 -0
  503. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/client.py +0 -0
  504. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/config.py +0 -0
  505. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/projects/dtos.py +0 -0
  506. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/__init__.py +0 -0
  507. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/client.py +0 -0
  508. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/config.py +0 -0
  509. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/prompts/dtos.py +0 -0
  510. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/providers/__init__.py +0 -0
  511. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/providers/validation.py +0 -0
  512. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/py.typed +0 -0
  513. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/reporting/__init__.py +0 -0
  514. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/reporting/example_map.py +0 -0
  515. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/__init__.py +0 -0
  516. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/audit.py +0 -0
  517. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/__init__.py +0 -0
  518. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/helpers.py +0 -0
  519. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/mfa.py +0 -0
  520. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/models.py +0 -0
  521. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/oidc.py +0 -0
  522. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/saml.py +0 -0
  523. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/sms.py +0 -0
  524. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/auth/totp.py +0 -0
  525. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/config.py +0 -0
  526. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/credentials.py +0 -0
  527. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/crypto_utils.py +0 -0
  528. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/deployment.py +0 -0
  529. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/encryption.py +0 -0
  530. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/enterprise.py +0 -0
  531. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/headers.py +0 -0
  532. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/jwt_validator.py +0 -0
  533. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/rate_limiter.py +0 -0
  534. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/redaction.py +0 -0
  535. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/session_manager.py +0 -0
  536. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/security/tenant.py +0 -0
  537. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/SKILL.md +0 -0
  538. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/convergence-patterns.md +0 -0
  539. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-analyze-results/references/optimization-result-api.md +0 -0
  540. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/SKILL.md +0 -0
  541. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/constraints.md +0 -0
  542. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-configuration-space/references/parameter-types.md +0 -0
  543. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/SKILL.md +0 -0
  544. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/error-reference.md +0 -0
  545. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/logging-config.md +0 -0
  546. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-debugging/references/mock-mode.md +0 -0
  547. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/SKILL.md +0 -0
  548. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/evaluation-options.md +0 -0
  549. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/execution-modes.md +0 -0
  550. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-decorator-setup/references/injection-modes.md +0 -0
  551. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/SKILL.md +0 -0
  552. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/dspy.md +0 -0
  553. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/langchain.md +0 -0
  554. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-integrations/references/litellm.md +0 -0
  555. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/SKILL.md +0 -0
  556. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/environment-variables.md +0 -0
  557. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-quickstart/references/installation-extras.md +0 -0
  558. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/SKILL.md +0 -0
  559. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/algorithms.md +0 -0
  560. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/cost-management.md +0 -0
  561. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/skills/traigent-run-optimization/references/parallel-config.md +0 -0
  562. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/storage/__init__.py +0 -0
  563. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/storage/local_storage.py +0 -0
  564. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/telemetry/__init__.py +0 -0
  565. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/telemetry/optuna_metrics.py +0 -0
  566. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/testing/__init__.py +0 -0
  567. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/traigent_client.py +0 -0
  568. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/traigent_integration.py +0 -0
  569. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/__init__.py +0 -0
  570. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/dataflow_strategy.py +0 -0
  571. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_strategies.py +0 -0
  572. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detection_types.py +0 -0
  573. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/detector.py +0 -0
  574. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/discovery.py +0 -0
  575. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/observation.py +0 -0
  576. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tuned_variables/py.typed +0 -0
  577. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/__init__.py +0 -0
  578. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/__main__.py +0 -0
  579. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/models.py +0 -0
  580. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/objectives.py +0 -0
  581. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/options.py +0 -0
  582. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/promotion_gate.py +0 -0
  583. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/registry.py +0 -0
  584. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/spec_loader.py +0 -0
  585. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/spec_validator.py +0 -0
  586. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/tvl/statistics.py +0 -0
  587. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/__init__.py +0 -0
  588. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/batch_optimizer_utils.py +0 -0
  589. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/batch_processing.py +0 -0
  590. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/callbacks.py +0 -0
  591. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/console.py +0 -0
  592. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/constraints.py +0 -0
  593. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/cost_calculator.py +0 -0
  594. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/diagnostics.py +0 -0
  595. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/env_config.py +0 -0
  596. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/error_handler.py +0 -0
  597. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/example_id.py +0 -0
  598. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/exceptions.py +0 -0
  599. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/file_versioning.py +0 -0
  600. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/function_identity.py +0 -0
  601. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/hashing.py +0 -0
  602. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/importance.py +0 -0
  603. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/incentives.py +0 -0
  604. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/insights.py +0 -0
  605. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/langchain_interceptor.py +0 -0
  606. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/litellm_interceptor.py +0 -0
  607. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/llm_response_parsing.py +0 -0
  608. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/local_analytics.py +0 -0
  609. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/logging.py +0 -0
  610. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/multi_objective.py +0 -0
  611. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/numpy_compat.py +0 -0
  612. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/objectives.py +0 -0
  613. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/optimization_analyzer.py +0 -0
  614. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/optimization_logger.py +0 -0
  615. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/persistence.py +0 -0
  616. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/reproducibility.py +0 -0
  617. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/results_table.py +0 -0
  618. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/retry.py +0 -0
  619. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/secure_path.py +0 -0
  620. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/url_security.py +0 -0
  621. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/user_prompts.py +0 -0
  622. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/utils/validation.py +0 -0
  623. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/visualization/__init__.py +0 -0
  624. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/visualization/plots.py +0 -0
  625. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/__init__.py +0 -0
  626. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/errors.py +0 -0
  627. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/server.py +0 -0
  628. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent/wrapper/service.py +0 -0
  629. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/dependency_links.txt +0 -0
  630. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/entry_points.txt +0 -0
  631. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/requires.txt +0 -0
  632. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent.egg-info/top_level.txt +0 -0
  633. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/__init__.py +0 -0
  634. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/base.py +0 -0
  635. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/plugins.py +0 -0
  636. {traigent-0.15.0 → traigent-0.16.0.dev0}/traigent_validation/py.typed +0 -0
  637. {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.15.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 local runs in the portal** | [Hybrid portal tracking](#portal-hybrid-tracking) | 5 min |
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` | Local-only privacy-first execution |
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-hybrid-tracking"></a>
352
+ <a id="portal-tracking"></a>
353
353
 
354
- ### ☁️ Traigent Portal & Hybrid Tracking
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 you do not need to set `execution_mode`. The SDK auto-selects the mode based on algorithm and transport.
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
- For local-only runs with no Traigent backend egress, pass `offline=True`. For
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; no `execution_mode` needed
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
- | **Privacy-first** | Local execution mode keeps all data on your machine |
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, execution modes, CLI, and more</summary>
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
- ### Execution Modes
476
+ ### Optimization Routing
479
477
 
480
- | Mode | Status | Privacy | Algorithm | Best For |
481
- |------|--------|---------|-----------|----------|
482
- | **Local** (`edge_analytics`) | ✅ Available | Complete | Random, Grid | Local/private runs |
483
- | **Hybrid** (`hybrid`) | Available | Trial execution local | Random, Grid + cloud smart algorithms | Portal-tracked runs |
484
- | **Cloud** (`cloud`) | 🚧 Reserved | Not available | Future remote execution | Do not use yet |
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
- **[Execution modes guide →](docs/guides/execution-modes.md)** mode comparisons, privacy details, migration path
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 local runs in the portal** | [Hybrid portal tracking](#portal-hybrid-tracking) | 5 min |
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` | Local-only privacy-first execution |
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-hybrid-tracking"></a>
204
+ <a id="portal-tracking"></a>
205
205
 
206
- ### ☁️ Traigent Portal & Hybrid Tracking
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 you do not need to set `execution_mode`. The SDK auto-selects the mode based on algorithm and transport.
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
- For local-only runs with no Traigent backend egress, pass `offline=True`. For
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; no `execution_mode` needed
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
- | **Privacy-first** | Local execution mode keeps all data on your machine |
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, execution modes, CLI, and more</summary>
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
- ### Execution Modes
328
+ ### Optimization Routing
331
329
 
332
- | Mode | Status | Privacy | Algorithm | Best For |
333
- |------|--------|---------|-----------|----------|
334
- | **Local** (`edge_analytics`) | ✅ Available | Complete | Random, Grid | Local/private runs |
335
- | **Hybrid** (`hybrid`) | Available | Trial execution local | Random, Grid + cloud smart algorithms | Portal-tracked runs |
336
- | **Cloud** (`cloud`) | 🚧 Reserved | Not available | Future remote execution | Do not use yet |
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
- **[Execution modes guide →](docs/guides/execution-modes.md)** mode comparisons, privacy details, migration path
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
- - **[Execution Modes](guides/execution-modes.md)** - Local, hybrid portal tracking, and reserved cloud execution behavior
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
@@ -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"` is cloud-first with local fallback on connectivity failures; `"grid"` and `"random"` run locally; smart algorithms require cloud. |
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 in privacy-sensitive modes. |
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 \| HybridAPIOptions \| dict \| None` | `None` | External service evaluator bundle. Use `ExternalServiceEvaluator(hybrid_api=HybridAPIOptions(...))` for Hybrid API services. The optimizer still runs locally; the evaluator dispatches each trial to the external HTTP or MCP service. |
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"`: cloud-first optimizer decisions with local trial execution and local fallback on connectivity failures.
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. `TRAIGENT_OFFLINE=1` and the legacy `TRAIGENT_OFFLINE_MODE=1` provide the same routing at the environment level.
152
- - `privacy_enabled` and `cloud_fallback_policy` are deprecated no-ops. `execution_mode` is deprecated compatibility input only; migrate to `algorithm`, `offline`, and `evaluator=ExternalServiceEvaluator(hybrid_api=HybridAPIOptions(...))`.
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. `"auto"` is cloud-first with local fallback on connectivity failures; `"grid"` and `"random"` stay local; 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. |
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(algorithm="grid", max_trials=50)
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 cloud-first and falls back to local grid/random on connectivity failures; `"grid"` and `"random"` are explicit local optimizers; smart algorithms require cloud and hard-error when unavailable or offline.
509
- - `offline`: force local-only operation with zero Traigent backend egress. `TRAIGENT_OFFLINE=1` and legacy `TRAIGENT_OFFLINE_MODE=1` provide the same behavior via environment variables.
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, including `ExternalServiceEvaluator(hybrid_api=HybridAPIOptions(...))`. This does not change optimizer routing; it only changes how each trial is evaluated.
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
- Deprecated execution inputs:
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
- ### Offline Local Storage
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) - Cloud-first auto, explicit local, offline, and migration guidance
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 privacy
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
- ### Privacy and Offline Mode
48
+ ### Data Boundary and No-Egress Runs
49
49
 
50
- The cloud-brain path sends configuration identifiers and numeric metrics. It
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
- Offline runs keep Traigent optimization metadata local while still allowing your
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
- `TRAIGENT_OFFLINE=1` and the legacy `TRAIGENT_OFFLINE_MODE=1` enable the same
67
- zero-egress routing without changing code. Set `TRAIGENT_REQUIRE_CLOUD=1` when
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
- **Offline mode**:
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
- **Cloud-brain mode**:
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 mode, data is stored locally:
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 without enabling full
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 privacy-sensitive projects.
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 Privacy
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 Offline Mode for Zero Traigent Egress**:
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 cloud-brain path sends
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**: In offline mode, check the JSON files in `~/.traigent/sessions/`. They
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) - cloud-first auto, explicit local, offline, env vars, and migration guidance
429
- - [Privacy & Security](../contributing/SECURITY.md) - Security practices
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 Execution**: Use cloud-first `algorithm="auto"`, explicit local
13
- `algorithm="grid"` / `"random"`, `offline=True` for zero Traigent backend
14
- egress, or `ExternalServiceEvaluator` for external Hybrid API services.
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
- ## Execution Modes
195
+ ## Optimization Routing
196
196
 
197
197
  ```mermaid
198
198
  flowchart TB
199
- subgraph EdgeAnalytics["Offline Local Mode"]
199
+ subgraph DefaultPath["Default"]
200
200
  direction TB
201
- ea_desc["Local optimization<br/>Data stays on-premise<br/>Optional telemetry"]
202
- ea_local["Local Storage"]
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 CloudMode["Cloud Mode"]
205
+ subgraph LocalSearch["Local Search"]
207
206
  direction TB
208
- cloud_desc["Reserved future remote execution<br/>Not available today<br/>Fails closed"]
209
- cloud_backend["Future Traigent Cloud"]
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 HybridMode["Hybrid Mode"]
211
+ subgraph NoEgress["No-Egress Run"]
214
212
  direction TB
215
- hybrid_desc["Local trial execution<br/>Backend session/result tracking<br/>Portal-visible results"]
216
- hybrid_local["Local Execution"]
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"] --> EdgeAnalytics
221
- User --> CloudMode
222
- User --> HybridMode
217
+ User["Your Application"] --> DefaultPath
218
+ User --> LocalSearch
219
+ User --> NoEgress
223
220
 
224
- style EdgeAnalytics fill:#e8f5e9,stroke:#2e7d32
225
- style CloudMode fill:#e3f2fd,stroke:#1565c0
226
- style HybridMode fill:#fff3e0,stroke:#ef6c00
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 execution path ran:
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
- Use `ExternalServiceEvaluator` when trials are delegated to an external service
181
- that implements the Traigent Hybrid API contract. This replaces the removed
182
- `execution_mode="hybrid_api"` plus flat `hybrid_api_*` arguments; the optimizer
183
- still runs locally and each trial evaluation is dispatched through the external
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. Execution modes and rollouts: `examples/advanced/execution-modes/` (local patterns + roadmap stubs)
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
- ## Execution model
34
- - `algorithm="auto"` (default) - cloud-first optimizer decisions, local trials, local fallback on connectivity failures.
35
- - `algorithm="grid"` / `"random"` - explicit local optimizers with no cloud optimizer round trip.
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`, `TRAIGENT_OFFLINE=1`, or legacy `TRAIGENT_OFFLINE_MODE=1` - zero Traigent backend egress.
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