fred-runtime 3.4.2__tar.gz → 3.4.4__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 (174) hide show
  1. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/PKG-INFO +5 -5
  2. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/README.md +2 -2
  3. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/__main__.py +1 -0
  4. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/agent_app.py +434 -48
  5. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo.py +2 -2
  6. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_access/capability.py +24 -52
  7. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_summarize/capability.py +54 -20
  8. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/history_display.py +13 -0
  9. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/pod_client.py +8 -0
  10. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/repl.py +8 -0
  11. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/graph/graph_runtime.py +47 -11
  12. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/v2_runtime/adapters.py +1 -0
  13. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/authz.py +14 -49
  14. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/__init__.py +4 -3
  15. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/hitl.py +218 -75
  16. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_langchain_adapter.py +2 -0
  17. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_message_codec.py +27 -1
  18. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_runtime.py +37 -8
  19. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_stream_adapter.py +25 -21
  20. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/checkpoints.py +15 -3
  21. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/model_metadata.py +34 -0
  22. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/sql_checkpointer.py +358 -0
  23. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/PKG-INFO +5 -5
  24. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/SOURCES.txt +7 -0
  25. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/requires.txt +1 -1
  26. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/pyproject.toml +3 -3
  27. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_agent_app.py +1333 -33
  28. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_agent_1973.py +1 -1
  29. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_document_summarize.py +47 -13
  30. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_endpoints_1974.py +12 -4
  31. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_conversational_memory.py +3 -0
  32. fred_runtime-3.4.4/tests/test_graph_runtime_token_usage_totals.py +132 -0
  33. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_history.py +7 -0
  34. fred_runtime-3.4.4/tests/test_history_display.py +271 -0
  35. fred_runtime-3.4.4/tests/test_hitl_resume_langgraph_integration.py +307 -0
  36. fred_runtime-3.4.4/tests/test_langgraph_interrupt_id_semantics.py +82 -0
  37. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_pod_client.py +28 -0
  38. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_loop_regressions_1972.py +199 -33
  39. fred_runtime-3.4.4/tests/test_react_message_codec_resume.py +110 -0
  40. fred_runtime-3.4.4/tests/test_react_token_usage_totals.py +173 -0
  41. fred_runtime-3.4.4/tests/test_sql_checkpointer_hitl_claim.py +545 -0
  42. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/__init__.py +0 -0
  43. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/__init__.py +0 -0
  44. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/_catalogs.py +0 -0
  45. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/config.py +0 -0
  46. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/config_loader.py +0 -0
  47. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/container.py +0 -0
  48. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/context.py +0 -0
  49. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/dependencies.py +0 -0
  50. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/mcp_config.py +0 -0
  51. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/observability_factory.py +0 -0
  52. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/openai_compat_router.py +0 -0
  53. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/__init__.py +0 -0
  54. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/assembly.py +0 -0
  55. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/assets.py +0 -0
  56. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo_migrations/env.py +0 -0
  57. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo_migrations/versions/d1e2m0a0b0c0_create_demo_echo_notes.py +0 -0
  58. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_access/__init__.py +0 -0
  59. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_summarize/__init__.py +0 -0
  60. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/errors.py +0 -0
  61. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/mcp.py +0 -0
  62. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/openapi_dump.py +0 -0
  63. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/registry.py +0 -0
  64. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/__init__.py +0 -0
  65. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/completion.py +0 -0
  66. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/entrypoint.py +0 -0
  67. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/kpi_display.py +0 -0
  68. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/repl_helpers.py +0 -0
  69. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/url_helpers.py +0 -0
  70. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/client.py +0 -0
  71. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/__init__.py +0 -0
  72. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/context_aware_tool.py +0 -0
  73. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_base_client.py +0 -0
  74. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_document_client.py +0 -0
  75. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_fast_text_client.py +0 -0
  76. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_http_client.py +0 -0
  77. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_markdown_media_client.py +0 -0
  78. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_tag_client.py +0 -0
  79. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_vectorsearch_client.py +0 -0
  80. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_workspace_client.py +0 -0
  81. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_interceptors.py +0 -0
  82. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_runtime.py +0 -0
  83. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_toolkit.py +0 -0
  84. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_utils.py +0 -0
  85. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/structures.py +0 -0
  86. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/token_expiry.py +0 -0
  87. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/tool_node_utils.py +0 -0
  88. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/deep/__init__.py +0 -0
  89. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/deep/deep_runtime.py +0 -0
  90. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/eval/__init__.py +0 -0
  91. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/eval/collector.py +0 -0
  92. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/graph/__init__.py +0 -0
  93. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/__init__.py +0 -0
  94. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/inprocess_toolkit_registry.py +0 -0
  95. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/kf_vector_search/__init__.py +0 -0
  96. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/kf_vector_search/toolkit.py +0 -0
  97. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/v2_runtime/__init__.py +0 -0
  98. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/migrations.py +0 -0
  99. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/__init__.py +0 -0
  100. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/catalog.py +0 -0
  101. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/contracts.py +0 -0
  102. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/provider.py +0 -0
  103. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/resolver.py +0 -0
  104. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/__init__.py +0 -0
  105. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/checkpoint_hygiene.py +0 -0
  106. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/dynamic_prompt.py +0 -0
  107. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/frame.py +0 -0
  108. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/model_routing.py +0 -0
  109. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/shared.py +0 -0
  110. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/tool_observability.py +0 -0
  111. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/tracing_kpi.py +0 -0
  112. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_model_adapter.py +0 -0
  113. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_prompting.py +0 -0
  114. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_binding.py +0 -0
  115. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_loop.py +0 -0
  116. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_rendering.py +0 -0
  117. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_resolution.py +0 -0
  118. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_utils.py +0 -0
  119. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tracing.py +0 -0
  120. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_context.py +0 -0
  121. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/__init__.py +0 -0
  122. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/request_context_helpers.py +0 -0
  123. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/user_token_refresher.py +0 -0
  124. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/__init__.py +0 -0
  125. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/filesystem_context.py +0 -0
  126. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/thinking.py +0 -0
  127. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/tool_loop.py +0 -0
  128. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/dependency_links.txt +0 -0
  129. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/entry_points.txt +0 -0
  130. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/top_level.txt +0 -0
  131. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/setup.cfg +0 -0
  132. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_chat_controls_1976.py +0 -0
  133. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_chat_parts_1977.py +0 -0
  134. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_document_access_1906.py +0 -0
  135. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_registry_1973.py +0 -0
  136. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_routes_tables_1979.py +0 -0
  137. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_selection_1974.py +0 -0
  138. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_tool_return_convention.py +0 -0
  139. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_client.py +0 -0
  140. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_config_loader.py +0 -0
  141. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_context.py +0 -0
  142. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_context_aware_tool.py +0 -0
  143. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_deep_agent_middleware.py +0 -0
  144. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_eval_collector.py +0 -0
  145. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_eval_trace.py +0 -0
  146. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_fred_workspace_fs.py +0 -0
  147. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_capability_bridge.py +0 -0
  148. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_runtime_invoke_agent.py +0 -0
  149. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_runtime_observability.py +0 -0
  150. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kf_vector_search_toolkit.py +0 -0
  151. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kf_workspace_client.py +0 -0
  152. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_knowledge_search_tool_invoker_sources.py +0 -0
  153. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kpi_display.py +0 -0
  154. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_mcp_config.py +0 -0
  155. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_enforcement.py +0 -0
  156. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_reasoning_enablement.py +0 -0
  157. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_routing.py +0 -0
  158. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_models_catalog_projection.py +0 -0
  159. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_openai_compat_router.py +0 -0
  160. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_middleware_frame.py +0 -0
  161. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_prompting.py +0 -0
  162. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_thinking.py +0 -0
  163. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_repl_helpers.py +0 -0
  164. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_runtime_context_prompt_injection.py +0 -0
  165. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_smoke.py +0 -0
  166. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_spike_capability_state_1971.py +0 -0
  167. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_sql_checkpointer_owner.py +0 -0
  168. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_token_expiry.py +0 -0
  169. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_carrier_middleware_naming.py +0 -0
  170. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_loop_trim.py +0 -0
  171. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_observability_middleware.py +0 -0
  172. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tracing_kpi_content_confinement.py +0 -0
  173. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_url_helpers.py +0 -0
  174. {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_user_token_refresher.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fred-runtime
3
- Version: 3.4.2
3
+ Version: 3.4.4
4
4
  Summary: Runtime adapters and infrastructure wiring for Fred v2 agents.
5
5
  Author-email: Thales <noreply@thalesgroup.com>
6
6
  License: Apache-2.0
7
- Project-URL: Homepage, https://fredk8.dev
7
+ Project-URL: Homepage, https://site.fredlab.dev
8
8
  Project-URL: Repository, https://github.com/ThalesGroup/fred
9
9
  Classifier: License :: OSI Approved :: Apache Software License
10
10
  Classifier: Programming Language :: Python :: 3
@@ -12,7 +12,7 @@ Classifier: Programming Language :: Python :: 3 :: Only
12
12
  Classifier: Operating System :: OS Independent
13
13
  Requires-Python: <3.13,>=3.12
14
14
  Description-Content-Type: text/markdown
15
- Requires-Dist: fred-core>=3.4.1
15
+ Requires-Dist: fred-core>=3.8.0
16
16
  Requires-Dist: fred-sdk>=3.3.3
17
17
  Requires-Dist: alembic>=1.18.4
18
18
  Requires-Dist: deepagents>=0.6.12
@@ -280,7 +280,7 @@ class MyAgent(ReActAgentDefinition):
280
280
  REGISTRY = {MyAgent.agent_id: MyAgent()}
281
281
  ```
282
282
 
283
- See [fred-samples](https://github.com/ThalesGroup/fred) for a working reference pod.
283
+ See [fred-samples](https://github.com/ThalesGroup/fred-samples) for a working reference pod.
284
284
 
285
285
  ---
286
286
 
@@ -296,4 +296,4 @@ See [fred-samples](https://github.com/ThalesGroup/fred) for a working reference
296
296
 
297
297
  ## License
298
298
 
299
- Apache 2.0 — see [LICENSE](./LICENSE).
299
+ [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
@@ -240,7 +240,7 @@ class MyAgent(ReActAgentDefinition):
240
240
  REGISTRY = {MyAgent.agent_id: MyAgent()}
241
241
  ```
242
242
 
243
- See [fred-samples](https://github.com/ThalesGroup/fred) for a working reference pod.
243
+ See [fred-samples](https://github.com/ThalesGroup/fred-samples) for a working reference pod.
244
244
 
245
245
  ---
246
246
 
@@ -256,4 +256,4 @@ See [fred-samples](https://github.com/ThalesGroup/fred) for a working reference
256
256
 
257
257
  ## License
258
258
 
259
- Apache 2.0 — see [LICENSE](./LICENSE).
259
+ [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
@@ -77,6 +77,7 @@ def main(argv: list[str] | None = None) -> int:
77
77
  if args.command == "dump-openapi":
78
78
  return _cmd_dump_openapi(args)
79
79
  parser.error(f"unknown command: {args.command}")
80
+ return 2
80
81
 
81
82
 
82
83
  if __name__ == "__main__":