steerable-agent-runtime 0.2.4__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/PKG-INFO +1 -1
  2. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/pyproject.toml +1 -1
  3. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/__init__.py +386 -0
  4. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/antihallucination.py +618 -0
  5. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/approval.py +372 -0
  6. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/branch.py +294 -0
  7. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/cache_control.py +154 -0
  8. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/calibration.py +259 -0
  9. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/compaction.py +279 -0
  10. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/errors.py +9 -0
  11. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/history.py +670 -0
  12. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/hooks.py +316 -0
  13. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/llm/__init__.py +74 -6
  14. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/llm/anthropic_native.py +149 -41
  15. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/llm/compat.py +130 -0
  16. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/llm/errors.py +136 -0
  17. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/llm/openai_compat.py +545 -0
  18. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/llm/parts.py +69 -0
  19. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/loop.py +1910 -0
  20. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/mcp.py +438 -0
  21. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/model_info.py +155 -0
  22. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/orchestration.py +510 -0
  23. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/otel.py +245 -0
  24. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/pricing.py +88 -0
  25. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/pseudo.py +397 -0
  26. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/recording.py +455 -0
  27. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/replay.py +222 -0
  28. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/resume.py +330 -0
  29. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/retry.py +78 -0
  30. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/sandboxed.py +168 -0
  31. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/skills.py +673 -0
  32. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/spill.py +127 -0
  33. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/storage/__init__.py +30 -0
  34. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/storage/in_memory.py +44 -0
  35. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/storage/sqlalchemy_store.py +63 -0
  36. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/subagent.py +192 -0
  37. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/tokens.py +143 -0
  38. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/tool_schema.py +124 -0
  39. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/tool_search.py +126 -0
  40. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/tools.py +451 -0
  41. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/tracing.py +186 -0
  42. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/transport/stdio_jsonrpc.py +121 -9
  43. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime/world_state.py +345 -0
  44. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime.egg-info/PKG-INFO +1 -1
  45. steerable_agent_runtime-0.3.0/src/steerable_agent_runtime.egg-info/SOURCES.txt +100 -0
  46. steerable_agent_runtime-0.3.0/tests/test_antihallucination.py +626 -0
  47. steerable_agent_runtime-0.3.0/tests/test_approval.py +470 -0
  48. steerable_agent_runtime-0.3.0/tests/test_branch.py +234 -0
  49. steerable_agent_runtime-0.3.0/tests/test_cache_control.py +185 -0
  50. steerable_agent_runtime-0.3.0/tests/test_cache_instrumentation.py +264 -0
  51. steerable_agent_runtime-0.3.0/tests/test_calibration.py +169 -0
  52. steerable_agent_runtime-0.3.0/tests/test_compaction.py +382 -0
  53. steerable_agent_runtime-0.3.0/tests/test_content_parts.py +237 -0
  54. steerable_agent_runtime-0.3.0/tests/test_error_taxonomy.py +178 -0
  55. steerable_agent_runtime-0.3.0/tests/test_fragment_bounds.py +182 -0
  56. steerable_agent_runtime-0.3.0/tests/test_golden.py +257 -0
  57. steerable_agent_runtime-0.3.0/tests/test_history.py +370 -0
  58. steerable_agent_runtime-0.3.0/tests/test_history_persistence.py +1030 -0
  59. steerable_agent_runtime-0.3.0/tests/test_hooks.py +411 -0
  60. steerable_agent_runtime-0.3.0/tests/test_llm_wire_helpers.py +479 -0
  61. steerable_agent_runtime-0.3.0/tests/test_loop.py +235 -0
  62. steerable_agent_runtime-0.3.0/tests/test_loop_cancellation.py +325 -0
  63. steerable_agent_runtime-0.3.0/tests/test_loop_replay.py +142 -0
  64. steerable_agent_runtime-0.3.0/tests/test_loop_sandbox_event.py +68 -0
  65. steerable_agent_runtime-0.3.0/tests/test_mcp.py +480 -0
  66. steerable_agent_runtime-0.3.0/tests/test_model_info.py +122 -0
  67. steerable_agent_runtime-0.3.0/tests/test_orchestration.py +611 -0
  68. steerable_agent_runtime-0.3.0/tests/test_otel.py +285 -0
  69. steerable_agent_runtime-0.3.0/tests/test_parallel_tools.py +277 -0
  70. steerable_agent_runtime-0.3.0/tests/test_provider_compat.py +215 -0
  71. steerable_agent_runtime-0.3.0/tests/test_pseudo.py +215 -0
  72. steerable_agent_runtime-0.3.0/tests/test_recording.py +345 -0
  73. steerable_agent_runtime-0.3.0/tests/test_replay_crosslang.py +45 -0
  74. steerable_agent_runtime-0.3.0/tests/test_resume.py +265 -0
  75. steerable_agent_runtime-0.3.0/tests/test_retry_hooks.py +139 -0
  76. steerable_agent_runtime-0.3.0/tests/test_safety_gate.py +135 -0
  77. steerable_agent_runtime-0.3.0/tests/test_sandboxed.py +158 -0
  78. steerable_agent_runtime-0.3.0/tests/test_skills.py +591 -0
  79. steerable_agent_runtime-0.3.0/tests/test_soft_timeout.py +165 -0
  80. steerable_agent_runtime-0.3.0/tests/test_spill.py +144 -0
  81. steerable_agent_runtime-0.3.0/tests/test_steer.py +127 -0
  82. steerable_agent_runtime-0.3.0/tests/test_stream_strip.py +212 -0
  83. steerable_agent_runtime-0.3.0/tests/test_subagent.py +233 -0
  84. steerable_agent_runtime-0.3.0/tests/test_tokens.py +123 -0
  85. steerable_agent_runtime-0.3.0/tests/test_tool_exposure.py +326 -0
  86. steerable_agent_runtime-0.3.0/tests/test_tool_hygiene.py +245 -0
  87. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/tests/test_tool_router.py +61 -0
  88. steerable_agent_runtime-0.3.0/tests/test_tool_schema.py +114 -0
  89. steerable_agent_runtime-0.3.0/tests/test_tool_timeout.py +238 -0
  90. steerable_agent_runtime-0.3.0/tests/test_trace_recorder.py +213 -0
  91. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/tests/test_transport_jsonrpc.py +90 -0
  92. steerable_agent_runtime-0.3.0/tests/test_usage_attribution.py +137 -0
  93. steerable_agent_runtime-0.3.0/tests/test_world_state.py +408 -0
  94. steerable_agent_runtime-0.2.4/src/steerable_agent_runtime/__init__.py +0 -34
  95. steerable_agent_runtime-0.2.4/src/steerable_agent_runtime/llm/openai_compat.py +0 -256
  96. steerable_agent_runtime-0.2.4/src/steerable_agent_runtime/tools.py +0 -251
  97. steerable_agent_runtime-0.2.4/src/steerable_agent_runtime.egg-info/SOURCES.txt +0 -24
  98. steerable_agent_runtime-0.2.4/tests/test_llm_wire_helpers.py +0 -213
  99. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/README.md +0 -0
  100. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/setup.cfg +0 -0
  101. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/transport/__init__.py +0 -0
  102. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime/transport/fastapi_sse.py +0 -0
  103. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime.egg-info/dependency_links.txt +0 -0
  104. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime.egg-info/requires.txt +0 -0
  105. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/src/steerable_agent_runtime.egg-info/top_level.txt +0 -0
  106. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/tests/test_in_memory_storage.py +0 -0
  107. {steerable_agent_runtime-0.2.4 → steerable_agent_runtime-0.3.0}/tests/test_transport_sse.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: steerable-agent-runtime
3
- Version: 0.2.4
3
+ Version: 0.3.0
4
4
  Summary: Steerable agent runtime: LLM, tool, storage, and transport adapters.
5
5
  Requires-Python: >=3.10
6
6
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "steerable-agent-runtime"
3
- version = "0.2.4"
3
+ version = "0.3.0"
4
4
  description = "Steerable agent runtime: LLM, tool, storage, and transport adapters."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -0,0 +1,386 @@
1
+ """Steerable agent runtime — Tier 3 adapter package."""
2
+
3
+ from .antihallucination import (
4
+ AntiHallucinationConfig,
5
+ AntiHallucinationHooks,
6
+ detect_claimed_execution,
7
+ detect_deferred_execution,
8
+ detect_deferred_execution_eager,
9
+ detect_execution_intent_in_user_message,
10
+ parse_grounding_verdict,
11
+ parse_turn_route,
12
+ should_run_grounding_judge,
13
+ )
14
+ from .approval import (
15
+ ApprovalDecision,
16
+ ApprovalExecutor,
17
+ ApprovalRequest,
18
+ ApprovalStore,
19
+ Approver,
20
+ AutoApprover,
21
+ InMemoryApprovalStore,
22
+ JsonApprovalStore,
23
+ SessionApprovalCache,
24
+ )
25
+ from .branch import (
26
+ BranchPoint,
27
+ ForkResult,
28
+ branch_label,
29
+ fork_record,
30
+ lineage,
31
+ resolve_fork_seq,
32
+ )
33
+ from .cache_control import (
34
+ CacheControlProvider,
35
+ CacheRetention,
36
+ place_cache_breakpoints,
37
+ system_blocks_with_cache,
38
+ )
39
+ from .calibration import CalibratingProvider, ModelCalibration, UsageCalibration
40
+ from .compaction import CompactionHooks
41
+ from .errors import (
42
+ ApprovalAborted,
43
+ BudgetExhaustedError,
44
+ PolicyDeniedError,
45
+ StorageError,
46
+ ToolDispatchError,
47
+ TransportError,
48
+ )
49
+ from .errors import (
50
+ RuntimeError as SteerableRuntimeError,
51
+ )
52
+ from .history import (
53
+ RECORD_FORMAT_VERSION,
54
+ CompactionBoundary,
55
+ ContextFragment,
56
+ ContextManager,
57
+ HistoryItem,
58
+ HistorySeed,
59
+ HistoryStore,
60
+ RecordEntry,
61
+ RecordFormatError,
62
+ entry_from_dict,
63
+ entry_to_dict,
64
+ message_from_dict,
65
+ message_to_dict,
66
+ )
67
+ from .hooks import (
68
+ ChainHooks,
69
+ CompletionAction,
70
+ CompletionDraft,
71
+ LoopHooks,
72
+ NoopHooks,
73
+ PreStepAction,
74
+ RetryAction,
75
+ RewriteRequest,
76
+ TranscriptAppend,
77
+ )
78
+ from .llm import (
79
+ ContentPart,
80
+ ImagePart,
81
+ LLMMessage,
82
+ LLMProvider,
83
+ LLMStreamChunk,
84
+ LLMUsage,
85
+ TextPart,
86
+ text_parts,
87
+ )
88
+ from .loop import (
89
+ CompletionDecision,
90
+ CoreLoop,
91
+ LoopConfig,
92
+ LoopContext,
93
+ LoopEvent,
94
+ RouterToolExecutor,
95
+ ToolExecutor,
96
+ )
97
+ from .mcp import (
98
+ DEFAULT_MAX_SERVER_TOOLS,
99
+ McpCallResult,
100
+ McpCatalogError,
101
+ McpError,
102
+ McpStdioClient,
103
+ McpToolInfo,
104
+ mcp_invoker,
105
+ parse_mcp_name,
106
+ qualify_mcp_name,
107
+ register_mcp_catalog,
108
+ )
109
+ from .model_info import (
110
+ MODEL_INFOS,
111
+ REASONING_EFFORT_ORDER,
112
+ ModelInfo,
113
+ clamp_reasoning_effort,
114
+ register_model_info,
115
+ resolve_model_info,
116
+ )
117
+ from .orchestration import (
118
+ AgentPool,
119
+ ChildOutcome,
120
+ OrchestrationBudgetExceeded,
121
+ OrchestrationConfig,
122
+ OrchestrationExecutor,
123
+ orchestration_tool_descriptors,
124
+ )
125
+ from .otel import PrivacyMode, export_otlp_http, export_trace, to_otlp_json
126
+ from .pricing import (
127
+ MODEL_PRICES,
128
+ ModelPrice,
129
+ estimate_cost_usd,
130
+ price_for_model,
131
+ register_model_price,
132
+ )
133
+ from .pseudo import extract_inline_tool_calls
134
+ from .recording import (
135
+ DEFAULT_MAX_ITEM_TOKENS,
136
+ InMemoryRequestSink,
137
+ JsonlRequestSink,
138
+ RecordedRequest,
139
+ RecordingProvider,
140
+ RequestSink,
141
+ assert_bounded_items,
142
+ assert_requests_match_record,
143
+ assert_stable_prefix,
144
+ load_recorded_requests,
145
+ )
146
+ from .replay import (
147
+ ExecutionBudget,
148
+ HarnessExecutionState,
149
+ HarnessTrajectoryEvent,
150
+ build_step_decision_event,
151
+ reduce_execution_state,
152
+ )
153
+ from .resume import load_history_transcript, load_transcript, project_transcript
154
+ from .retry import RetryHooks
155
+ from .sandboxed import (
156
+ DEFAULT_SHELL_TOOLS,
157
+ SandboxBackend,
158
+ SandboxedToolExecutor,
159
+ SandboxEnforcement,
160
+ )
161
+ from .skills import (
162
+ EAGER_PRIORITY_THRESHOLD,
163
+ FilesystemSkillProvider,
164
+ SkillConfig,
165
+ SkillDefinition,
166
+ SkillExecutor,
167
+ SkillHooks,
168
+ SkillProvider,
169
+ SkillSummary,
170
+ matches_conditions,
171
+ render_skill_catalog,
172
+ select_catalog,
173
+ select_skills,
174
+ skill_to_dict,
175
+ skill_tool_descriptor,
176
+ )
177
+ from .spill import FilesystemSpillStore, InMemorySpillStore, SpillHooks, SpillStore
178
+ from .storage import StorageAdapter
179
+ from .subagent import (
180
+ FilteredToolsExecutor,
181
+ SubagentConfig,
182
+ SubagentExecutor,
183
+ subagent_tool_descriptor,
184
+ )
185
+ from .tokens import (
186
+ MODEL_TOKEN_FACTORS,
187
+ estimate_text_tokens,
188
+ estimate_tokens,
189
+ factor_for_model,
190
+ register_model_factor,
191
+ )
192
+ from .tool_search import TOOL_SEARCH_NAME, register_tool_search, tool_search_descriptor
193
+ from .tools import RegisteredTool, ToolExposure, ToolRouter, tool
194
+ from .tracing import TraceRecorder
195
+ from .transport import TransportAdapter
196
+ from .world_state import (
197
+ StaticWorldStateSection,
198
+ WorldStateFragment,
199
+ WorldStateHooks,
200
+ WorldStatePatchFragment,
201
+ WorldStateSection,
202
+ apply_merge_patch,
203
+ last_world_state_snapshot,
204
+ merge_patch,
205
+ )
206
+
207
+ __all__ = [
208
+ "DEFAULT_MAX_ITEM_TOKENS",
209
+ "DEFAULT_MAX_SERVER_TOOLS",
210
+ "DEFAULT_SHELL_TOOLS",
211
+ "EAGER_PRIORITY_THRESHOLD",
212
+ "MODEL_INFOS",
213
+ "MODEL_PRICES",
214
+ "MODEL_TOKEN_FACTORS",
215
+ "REASONING_EFFORT_ORDER",
216
+ "RECORD_FORMAT_VERSION",
217
+ "TOOL_SEARCH_NAME",
218
+ "AgentPool",
219
+ "AntiHallucinationConfig",
220
+ "AntiHallucinationHooks",
221
+ "ApprovalAborted",
222
+ "ApprovalDecision",
223
+ "ApprovalExecutor",
224
+ "ApprovalRequest",
225
+ "ApprovalStore",
226
+ "Approver",
227
+ "AutoApprover",
228
+ "BranchPoint",
229
+ "BudgetExhaustedError",
230
+ "CacheControlProvider",
231
+ "CacheRetention",
232
+ "CalibratingProvider",
233
+ "ChainHooks",
234
+ "ChildOutcome",
235
+ "CompactionBoundary",
236
+ "CompactionHooks",
237
+ "CompletionAction",
238
+ "CompletionDecision",
239
+ "CompletionDraft",
240
+ "ContentPart",
241
+ "ContextFragment",
242
+ "ContextManager",
243
+ "CoreLoop",
244
+ "ExecutionBudget",
245
+ "FilesystemSkillProvider",
246
+ "FilesystemSpillStore",
247
+ "FilteredToolsExecutor",
248
+ "ForkResult",
249
+ "HarnessExecutionState",
250
+ "HarnessTrajectoryEvent",
251
+ "HistoryItem",
252
+ "HistorySeed",
253
+ "HistoryStore",
254
+ "ImagePart",
255
+ "InMemoryApprovalStore",
256
+ "InMemoryRequestSink",
257
+ "InMemorySpillStore",
258
+ "JsonApprovalStore",
259
+ "JsonlRequestSink",
260
+ "LLMMessage",
261
+ "LLMProvider",
262
+ "LLMStreamChunk",
263
+ "LLMUsage",
264
+ "LoopConfig",
265
+ "LoopContext",
266
+ "LoopEvent",
267
+ "LoopHooks",
268
+ "McpCallResult",
269
+ "McpCatalogError",
270
+ "McpError",
271
+ "McpStdioClient",
272
+ "McpToolInfo",
273
+ "ModelCalibration",
274
+ "ModelInfo",
275
+ "ModelPrice",
276
+ "NoopHooks",
277
+ "OrchestrationBudgetExceeded",
278
+ "OrchestrationConfig",
279
+ "OrchestrationExecutor",
280
+ "PolicyDeniedError",
281
+ "PreStepAction",
282
+ "PrivacyMode",
283
+ "RecordEntry",
284
+ "RecordFormatError",
285
+ "RecordedRequest",
286
+ "RecordingProvider",
287
+ "RegisteredTool",
288
+ "RequestSink",
289
+ "RetryAction",
290
+ "RetryHooks",
291
+ "RewriteRequest",
292
+ "RouterToolExecutor",
293
+ "SandboxBackend",
294
+ "SandboxEnforcement",
295
+ "SandboxedToolExecutor",
296
+ "SessionApprovalCache",
297
+ "SkillConfig",
298
+ "SkillDefinition",
299
+ "SkillExecutor",
300
+ "SkillHooks",
301
+ "SkillProvider",
302
+ "SkillSummary",
303
+ "SpillHooks",
304
+ "SpillStore",
305
+ "StaticWorldStateSection",
306
+ "SteerableRuntimeError",
307
+ "StorageAdapter",
308
+ "StorageError",
309
+ "SubagentConfig",
310
+ "SubagentExecutor",
311
+ "TextPart",
312
+ "ToolDispatchError",
313
+ "ToolExecutor",
314
+ "ToolExposure",
315
+ "ToolRouter",
316
+ "TraceRecorder",
317
+ "TranscriptAppend",
318
+ "TransportAdapter",
319
+ "TransportError",
320
+ "UsageCalibration",
321
+ "WorldStateFragment",
322
+ "WorldStateHooks",
323
+ "WorldStatePatchFragment",
324
+ "WorldStateSection",
325
+ "apply_merge_patch",
326
+ "assert_bounded_items",
327
+ "assert_requests_match_record",
328
+ "assert_stable_prefix",
329
+ "branch_label",
330
+ "build_step_decision_event",
331
+ "clamp_reasoning_effort",
332
+ "detect_claimed_execution",
333
+ "detect_deferred_execution",
334
+ "detect_deferred_execution_eager",
335
+ "detect_execution_intent_in_user_message",
336
+ "entry_from_dict",
337
+ "entry_to_dict",
338
+ "estimate_cost_usd",
339
+ "estimate_text_tokens",
340
+ "estimate_tokens",
341
+ "export_otlp_http",
342
+ "export_trace",
343
+ "extract_inline_tool_calls",
344
+ "factor_for_model",
345
+ "fork_record",
346
+ "last_world_state_snapshot",
347
+ "lineage",
348
+ "load_history_transcript",
349
+ "load_recorded_requests",
350
+ "load_transcript",
351
+ "matches_conditions",
352
+ "mcp_invoker",
353
+ "merge_patch",
354
+ "message_from_dict",
355
+ "message_to_dict",
356
+ "orchestration_tool_descriptors",
357
+ "parse_grounding_verdict",
358
+ "parse_mcp_name",
359
+ "parse_turn_route",
360
+ "place_cache_breakpoints",
361
+ "price_for_model",
362
+ "project_transcript",
363
+ "qualify_mcp_name",
364
+ "reduce_execution_state",
365
+ "register_mcp_catalog",
366
+ "register_model_factor",
367
+ "register_model_info",
368
+ "register_model_price",
369
+ "register_tool_search",
370
+ "render_skill_catalog",
371
+ "resolve_fork_seq",
372
+ "resolve_model_info",
373
+ "select_catalog",
374
+ "select_skills",
375
+ "should_run_grounding_judge",
376
+ "skill_to_dict",
377
+ "skill_tool_descriptor",
378
+ "subagent_tool_descriptor",
379
+ "system_blocks_with_cache",
380
+ "text_parts",
381
+ "to_otlp_json",
382
+ "tool",
383
+ "tool_search_descriptor",
384
+ ]
385
+
386
+ __version__ = "0.1.0"