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.
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/PKG-INFO +5 -5
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/README.md +2 -2
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/__main__.py +1 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/agent_app.py +434 -48
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo.py +2 -2
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_access/capability.py +24 -52
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_summarize/capability.py +54 -20
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/history_display.py +13 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/pod_client.py +8 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/repl.py +8 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/graph/graph_runtime.py +47 -11
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/v2_runtime/adapters.py +1 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/authz.py +14 -49
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/__init__.py +4 -3
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/hitl.py +218 -75
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_langchain_adapter.py +2 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_message_codec.py +27 -1
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_runtime.py +37 -8
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_stream_adapter.py +25 -21
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/checkpoints.py +15 -3
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/model_metadata.py +34 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/sql_checkpointer.py +358 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/PKG-INFO +5 -5
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/SOURCES.txt +7 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/requires.txt +1 -1
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/pyproject.toml +3 -3
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_agent_app.py +1333 -33
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_agent_1973.py +1 -1
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_document_summarize.py +47 -13
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_endpoints_1974.py +12 -4
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_conversational_memory.py +3 -0
- fred_runtime-3.4.4/tests/test_graph_runtime_token_usage_totals.py +132 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_history.py +7 -0
- fred_runtime-3.4.4/tests/test_history_display.py +271 -0
- fred_runtime-3.4.4/tests/test_hitl_resume_langgraph_integration.py +307 -0
- fred_runtime-3.4.4/tests/test_langgraph_interrupt_id_semantics.py +82 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_pod_client.py +28 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_loop_regressions_1972.py +199 -33
- fred_runtime-3.4.4/tests/test_react_message_codec_resume.py +110 -0
- fred_runtime-3.4.4/tests/test_react_token_usage_totals.py +173 -0
- fred_runtime-3.4.4/tests/test_sql_checkpointer_hitl_claim.py +545 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/_catalogs.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/config.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/config_loader.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/container.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/context.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/dependencies.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/mcp_config.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/observability_factory.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/app/openai_compat_router.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/assembly.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/assets.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo_migrations/env.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/demo_migrations/versions/d1e2m0a0b0c0_create_demo_echo_notes.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_access/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/document_summarize/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/errors.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/mcp.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/openapi_dump.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/capabilities/registry.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/completion.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/entrypoint.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/kpi_display.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/repl_helpers.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/cli/url_helpers.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/context_aware_tool.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_base_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_document_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_fast_text_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_http_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_markdown_media_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_tag_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_vectorsearch_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/kf_workspace_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_interceptors.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_runtime.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_toolkit.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/mcp_utils.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/structures.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/token_expiry.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/common/tool_node_utils.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/deep/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/deep/deep_runtime.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/eval/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/eval/collector.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/graph/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/inprocess_toolkit_registry.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/kf_vector_search/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/kf_vector_search/toolkit.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/integrations/v2_runtime/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/migrations.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/catalog.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/contracts.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/provider.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/model_routing/resolver.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/checkpoint_hygiene.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/dynamic_prompt.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/frame.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/model_routing.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/shared.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/tool_observability.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/middleware/tracing_kpi.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_model_adapter.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_prompting.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_binding.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_loop.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_rendering.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_resolution.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tool_utils.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/react/react_tracing.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_context.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/request_context_helpers.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/runtime_support/user_token_refresher.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/__init__.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/filesystem_context.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/thinking.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime/support/tool_loop.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/dependency_links.txt +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/entry_points.txt +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/fred_runtime.egg-info/top_level.txt +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/setup.cfg +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_chat_controls_1976.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_chat_parts_1977.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_document_access_1906.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_registry_1973.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_routes_tables_1979.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_selection_1974.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_capability_tool_return_convention.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_config_loader.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_context.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_context_aware_tool.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_deep_agent_middleware.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_eval_collector.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_eval_trace.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_fred_workspace_fs.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_capability_bridge.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_runtime_invoke_agent.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_graph_runtime_observability.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kf_vector_search_toolkit.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kf_workspace_client.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_knowledge_search_tool_invoker_sources.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_kpi_display.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_mcp_config.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_enforcement.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_reasoning_enablement.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_model_routing.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_models_catalog_projection.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_openai_compat_router.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_middleware_frame.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_prompting.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_react_thinking.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_repl_helpers.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_runtime_context_prompt_injection.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_smoke.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_spike_capability_state_1971.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_sql_checkpointer_owner.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_token_expiry.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_carrier_middleware_naming.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_loop_trim.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tool_observability_middleware.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_tracing_kpi_content_confinement.py +0 -0
- {fred_runtime-3.4.2 → fred_runtime-3.4.4}/tests/test_url_helpers.py +0 -0
- {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.
|
|
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://
|
|
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.
|
|
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
|
|
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
|
|
259
|
+
[Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0).
|