fred-runtime 3.1.1__tar.gz → 3.3.1__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.1.1 → fred_runtime-3.3.1}/PKG-INFO +4 -4
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/agent_app.py +348 -157
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/config.py +9 -5
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/openai_compat_router.py +52 -7
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/repl.py +1 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/mcp_runtime.py +1 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/deep/deep_runtime.py +12 -6
- fred_runtime-3.3.1/fred_runtime/integrations/inprocess_toolkit_registry.py +50 -0
- fred_runtime-3.3.1/fred_runtime/integrations/kf_vector_search/__init__.py +21 -0
- fred_runtime-3.3.1/fred_runtime/integrations/kf_vector_search/toolkit.py +186 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/integrations/v2_runtime/adapters.py +4 -4
- fred_runtime-3.3.1/fred_runtime/react/react_prompting.py +310 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_runtime.py +7 -5
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_context.py +12 -2
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/sql_checkpointer.py +219 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/PKG-INFO +4 -4
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/SOURCES.txt +7 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/requires.txt +3 -3
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/pyproject.toml +4 -4
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_agent_app.py +659 -93
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_client.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_config_loader.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_context.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_context_aware_tool.py +1 -2
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_conversational_memory.py +5 -10
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_eval_trace.py +1 -2
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_fred_workspace_fs.py +2 -3
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_graph_runtime_invoke_agent.py +5 -6
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_graph_runtime_observability.py +1 -2
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_history.py +5 -6
- fred_runtime-3.3.1/tests/test_kf_vector_search_toolkit.py +136 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_kf_workspace_client.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_mcp_config.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_model_routing.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_openai_compat_router.py +2 -3
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_pod_client.py +0 -1
- fred_runtime-3.3.1/tests/test_react_prompting.py +216 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_react_thinking.py +12 -13
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_repl_helpers.py +0 -1
- fred_runtime-3.3.1/tests/test_runtime_context_prompt_injection.py +164 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_smoke.py +5 -6
- fred_runtime-3.3.1/tests/test_sql_checkpointer_owner.py +271 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_token_expiry.py +0 -1
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_user_token_refresher.py +0 -1
- fred_runtime-3.1.1/fred_runtime/react/react_prompting.py +0 -164
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/README.md +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/_catalogs.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/config_loader.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/container.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/context.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/dependencies.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/mcp_config.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/app/observability_factory.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/completion.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/entrypoint.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/history_display.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/kpi_display.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/pod_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/repl_helpers.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/cli/url_helpers.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/context_aware_tool.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_base_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_fast_text_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_http_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_logs_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_markdown_media_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_vectorsearch_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/kf_workspace_client.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/mcp_interceptors.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/mcp_toolkit.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/mcp_utils.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/structures.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/token_expiry.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/common/tool_node_utils.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/deep/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/eval/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/eval/collector.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/graph/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/graph/graph_runtime.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/integrations/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/integrations/v2_runtime/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/model_routing/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/model_routing/catalog.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/model_routing/contracts.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/model_routing/provider.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/model_routing/resolver.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_langchain_adapter.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_message_codec.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_model_adapter.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_stream_adapter.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tool_binding.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tool_loop.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tool_rendering.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tool_resolution.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tool_utils.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/react/react_tracing.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/checkpoints.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/model_metadata.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/request_context_helpers.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/runtime_support/user_token_refresher.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/support/__init__.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/support/filesystem_context.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/support/thinking.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/support/tool_approval.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime/support/tool_loop.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/dependency_links.txt +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/entry_points.txt +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/fred_runtime.egg-info/top_level.txt +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/setup.cfg +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_eval_collector.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_kpi_display.py +0 -0
- {fred_runtime-3.1.1 → fred_runtime-3.3.1}/tests/test_url_helpers.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fred-runtime
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.3.1
|
|
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
|
|
@@ -12,8 +12,8 @@ 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.1
|
|
16
|
-
Requires-Dist: fred-sdk>=3.1
|
|
15
|
+
Requires-Dist: fred-core>=3.4.1
|
|
16
|
+
Requires-Dist: fred-sdk>=3.3.1
|
|
17
17
|
Requires-Dist: alembic>=1.18.4
|
|
18
18
|
Requires-Dist: deepagents>=0.4.11
|
|
19
19
|
Requires-Dist: httpx>=0.28.1
|
|
@@ -25,7 +25,7 @@ Requires-Dist: langfuse>=3.0.0
|
|
|
25
25
|
Requires-Dist: requests<3,>=2.32
|
|
26
26
|
Requires-Dist: PyYAML>=6.0
|
|
27
27
|
Provides-Extra: app
|
|
28
|
-
Requires-Dist: fastapi>=0.
|
|
28
|
+
Requires-Dist: fastapi>=0.139.0; extra == "app"
|
|
29
29
|
Provides-Extra: dev
|
|
30
30
|
Requires-Dist: bandit>=1.8.6; extra == "dev"
|
|
31
31
|
Requires-Dist: basedpyright==1.31.0; extra == "dev"
|