fast-agent-mcp 0.3.2__py3-none-any.whl → 0.3.4__py3-none-any.whl
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.
Potentially problematic release.
This version of fast-agent-mcp might be problematic. Click here for more details.
- fast_agent/__init__.py +6 -3
- fast_agent/agents/__init__.py +63 -14
- fast_agent/agents/llm_decorator.py +2 -1
- fast_agent/agents/tool_agent.py +4 -1
- fast_agent/agents/workflow/orchestrator_models.py +1 -1
- fast_agent/cli/commands/go.py +1 -1
- fast_agent/cli/commands/url_parser.py +3 -3
- fast_agent/cli/main.py +7 -1
- fast_agent/config.py +6 -0
- fast_agent/core/__init__.py +65 -25
- fast_agent/core/direct_decorators.py +85 -103
- fast_agent/core/direct_factory.py +1 -1
- fast_agent/core/error_handling.py +1 -1
- fast_agent/core/fastagent.py +153 -34
- fast_agent/core/logging/events.py +4 -9
- fast_agent/llm/prompt_utils.py +10 -4
- fast_agent/llm/provider/anthropic/llm_anthropic.py +16 -5
- fast_agent/llm/provider/bedrock/llm_bedrock.py +13 -5
- fast_agent/llm/provider/google/llm_google_native.py +13 -2
- fast_agent/llm/provider/openai/llm_openai.py +22 -13
- fast_agent/mcp/ui_agent.py +1 -1
- fast_agent/resources/examples/data-analysis/analysis-campaign.py +1 -1
- fast_agent/resources/examples/data-analysis/analysis.py +1 -1
- fast_agent/resources/examples/mcp/elicitations/forms_demo.py +1 -1
- fast_agent/resources/examples/mcp/elicitations/game_character.py +1 -1
- fast_agent/resources/examples/mcp/elicitations/tool_call.py +1 -1
- fast_agent/resources/examples/mcp/state-transfer/agent_one.py +1 -1
- fast_agent/resources/examples/mcp/state-transfer/agent_two.py +1 -1
- fast_agent/resources/examples/researcher/researcher-eval.py +1 -1
- fast_agent/resources/examples/researcher/researcher-imp.py +1 -1
- fast_agent/resources/examples/researcher/researcher.py +1 -1
- fast_agent/resources/examples/tensorzero/agent.py +1 -1
- fast_agent/resources/examples/tensorzero/image_demo.py +1 -1
- fast_agent/resources/examples/tensorzero/simple_agent.py +1 -1
- fast_agent/resources/examples/workflows/chaining.py +1 -1
- fast_agent/resources/examples/workflows/evaluator.py +1 -1
- fast_agent/resources/examples/workflows/human_input.py +1 -1
- fast_agent/resources/examples/workflows/orchestrator.py +1 -1
- fast_agent/resources/examples/workflows/parallel.py +1 -1
- fast_agent/resources/examples/workflows/router.py +1 -1
- fast_agent/resources/setup/agent.py +1 -1
- fast_agent/resources/setup/fastagent.config.yaml +1 -0
- fast_agent/ui/mcp_ui_utils.py +12 -1
- fast_agent/ui/rich_progress.py +8 -6
- {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/METADATA +2 -2
- {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/RECORD +49 -49
- {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/WHEEL +0 -0
- {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/entry_points.txt +0 -0
- {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/licenses/LICENSE +0 -0
|
@@ -5,7 +5,7 @@ Parallel Workflow showing Fan Out and Fan In agents, using different models
|
|
|
5
5
|
import asyncio
|
|
6
6
|
from pathlib import Path
|
|
7
7
|
|
|
8
|
-
from fast_agent
|
|
8
|
+
from fast_agent import FastAgent
|
|
9
9
|
from fast_agent.core.prompt import Prompt
|
|
10
10
|
|
|
11
11
|
# Create the application
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
default_model: haiku
|
|
14
14
|
# mcp-ui support: disabled, enabled or auto. "auto" opens the web browser on the asset automatically
|
|
15
|
+
# mcp_ui_output_dir: ".fast-agent/ui" # Where to write MCP-UI HTML files (relative to CWD if not absolute)
|
|
15
16
|
# mcp_ui_mode: enabled
|
|
16
17
|
|
|
17
18
|
# Logging and Console Configuration:
|
fast_agent/ui/mcp_ui_utils.py
CHANGED
|
@@ -39,7 +39,18 @@ def _safe_filename(name: str) -> str:
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
def _ensure_output_dir() -> Path:
|
|
42
|
-
|
|
42
|
+
# Read output directory from settings, defaulting to .fast-agent/ui
|
|
43
|
+
try:
|
|
44
|
+
from fast_agent.config import get_settings
|
|
45
|
+
|
|
46
|
+
settings = get_settings()
|
|
47
|
+
dir_setting = getattr(settings, "mcp_ui_output_dir", ".fast-agent/ui") or ".fast-agent/ui"
|
|
48
|
+
except Exception:
|
|
49
|
+
dir_setting = ".fast-agent/ui"
|
|
50
|
+
|
|
51
|
+
base = Path(dir_setting)
|
|
52
|
+
if not base.is_absolute():
|
|
53
|
+
base = Path.cwd() / base
|
|
43
54
|
base.mkdir(parents=True, exist_ok=True)
|
|
44
55
|
return base
|
|
45
56
|
|
fast_agent/ui/rich_progress.py
CHANGED
|
@@ -5,7 +5,7 @@ from contextlib import contextmanager
|
|
|
5
5
|
from typing import Optional
|
|
6
6
|
|
|
7
7
|
from rich.console import Console
|
|
8
|
-
from rich.progress import Progress, SpinnerColumn, TextColumn
|
|
8
|
+
from rich.progress import Progress, SpinnerColumn, TaskID, TextColumn
|
|
9
9
|
|
|
10
10
|
from fast_agent.event_progress import ProgressAction, ProgressEvent
|
|
11
11
|
from fast_agent.ui.console import console as default_console
|
|
@@ -17,7 +17,7 @@ class RichProgressDisplay:
|
|
|
17
17
|
def __init__(self, console: Optional[Console] = None) -> None:
|
|
18
18
|
"""Initialize the progress display."""
|
|
19
19
|
self.console = console or default_console
|
|
20
|
-
self._taskmap = {}
|
|
20
|
+
self._taskmap: dict[str, TaskID] = {}
|
|
21
21
|
self._progress = Progress(
|
|
22
22
|
SpinnerColumn(spinner_name="simpleDotsScrolling"),
|
|
23
23
|
TextColumn(
|
|
@@ -134,11 +134,13 @@ class RichProgressDisplay:
|
|
|
134
134
|
description = f"[{self._get_action_style(event.action)}]▎ {event.action.value:<15}"
|
|
135
135
|
|
|
136
136
|
# Update basic task information
|
|
137
|
-
update_kwargs = {
|
|
137
|
+
update_kwargs: dict[str, object] = {
|
|
138
138
|
"description": description,
|
|
139
|
-
"
|
|
140
|
-
|
|
141
|
-
|
|
139
|
+
"fields": {
|
|
140
|
+
"target": event.target or task_name, # Use task_name as fallback for target
|
|
141
|
+
"details": event.details or "",
|
|
142
|
+
"task_name": task_name,
|
|
143
|
+
},
|
|
142
144
|
}
|
|
143
145
|
|
|
144
146
|
# For TOOL_PROGRESS events, update progress if available
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fast-agent-mcp
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Define, Prompt and Test MCP enabled Agents and Workflows
|
|
5
5
|
Author-email: Shaun Smith <fastagent@llmindset.co.uk>
|
|
6
6
|
License: Apache License
|
|
@@ -321,7 +321,7 @@ Here is the complete `sizer.py` Agent application, with boilerplate code:
|
|
|
321
321
|
|
|
322
322
|
```python
|
|
323
323
|
import asyncio
|
|
324
|
-
from fast_agent
|
|
324
|
+
from fast_agent import FastAgent
|
|
325
325
|
|
|
326
326
|
# Create the application
|
|
327
327
|
fast = FastAgent("Agent Example")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
fast_agent/__init__.py,sha256=
|
|
2
|
-
fast_agent/config.py,sha256=
|
|
1
|
+
fast_agent/__init__.py,sha256=zPSMngBIvbBYyu3jxZp-edxfOBWxCX7YlceMdlqvt9I,3795
|
|
2
|
+
fast_agent/config.py,sha256=URvQMiMlkXd3tImXQpiHVX5wrbzPQF6Aks-WoGGPQkM,20176
|
|
3
3
|
fast_agent/constants.py,sha256=d5EMSO2msRkjRFz8MgnnhpMnO3woqKP0EcQ4b_yI60w,235
|
|
4
4
|
fast_agent/context.py,sha256=nBelOqehSH91z3aG2nYhwETP-biRzz-iuA2fqmKdHP8,7700
|
|
5
5
|
fast_agent/context_dependent.py,sha256=KU1eydVBoIt4bYOZroqxDgE1AUexDaZi7hurE26QsF4,1584
|
|
@@ -7,38 +7,38 @@ fast_agent/event_progress.py,sha256=OETeh-4jJGyxvvPAlVTzW4JsCbFUmOTo-ti0ROgtG5M,
|
|
|
7
7
|
fast_agent/interfaces.py,sha256=R2C1TzNxAO8Qxaam5oHthfhHRNKoP78FtKSV6vPy_Gk,6251
|
|
8
8
|
fast_agent/mcp_server_registry.py,sha256=TDCNpQIehsh1PK4y7AWp_rkQMcwYx7FaouUbK3kWNZo,2635
|
|
9
9
|
fast_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
-
fast_agent/agents/__init__.py,sha256=
|
|
10
|
+
fast_agent/agents/__init__.py,sha256=WfgtR9MgmJUJI7rb-CUH_10s7308LjxYIYzJRIBZ_9Y,2644
|
|
11
11
|
fast_agent/agents/agent_types.py,sha256=ugolD3lC2KxSfBYjjRf9HjNATZaFx1o4Fhjb15huSgk,1776
|
|
12
12
|
fast_agent/agents/llm_agent.py,sha256=iuy3kO5Q-f9bm3tjYLG2Wurd0gK2sLhTfTkSnfVWzSw,8311
|
|
13
|
-
fast_agent/agents/llm_decorator.py,sha256=
|
|
13
|
+
fast_agent/agents/llm_decorator.py,sha256=IhvMOZVjo1qT4GII0KP000VYTCprzBQBGZPbZwBIEd0,16485
|
|
14
14
|
fast_agent/agents/mcp_agent.py,sha256=BMSTcGd9_SdoyEGNGVAWXu8ubaE1TAeAMl-2c_wymQU,35240
|
|
15
|
-
fast_agent/agents/tool_agent.py,sha256=
|
|
15
|
+
fast_agent/agents/tool_agent.py,sha256=owGcc1an9P8jb8ZfNYjCsLK6lv85IL7friWcSbZxMIo,6717
|
|
16
16
|
fast_agent/agents/workflow/chain_agent.py,sha256=Pd8dOH_YdKu3LXsKa4fwqzY_B2qVuhzdfCUiKi5v17s,6293
|
|
17
17
|
fast_agent/agents/workflow/evaluator_optimizer.py,sha256=rhzazy8Aj-ydId6kmBC77TmtYZ5mirSe7eV6PPMWkBA,12040
|
|
18
18
|
fast_agent/agents/workflow/iterative_planner.py,sha256=CTtDpK-YGrFFZMQQmFeE-2I_9-cZv23pNwUoh8w5voA,20478
|
|
19
|
-
fast_agent/agents/workflow/orchestrator_models.py,sha256=
|
|
19
|
+
fast_agent/agents/workflow/orchestrator_models.py,sha256=VNnnVegnjimgiuL8ZhxkBPhg8tjbeJRGq2JAIl0FAbU,7216
|
|
20
20
|
fast_agent/agents/workflow/orchestrator_prompts.py,sha256=EXKEI174sshkZyPPEnWbwwNafzSPuA39MXL7iqG9cWc,9106
|
|
21
21
|
fast_agent/agents/workflow/parallel_agent.py,sha256=DlJXDURAfx-WBF297tKBLfH93gDFSAPUyEmJr7QNGyw,7476
|
|
22
22
|
fast_agent/agents/workflow/router_agent.py,sha256=KWLOZMFI4YPn0fqzR001qLFbOe7DYxx-E2c0BgIgO-g,11081
|
|
23
23
|
fast_agent/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
fast_agent/cli/__main__.py,sha256=VD-UuXvIHJtrDGgVVpsAZGJ_GfVTalSD1Kx9vzixzfM,1129
|
|
25
25
|
fast_agent/cli/constants.py,sha256=KawdkaN289nVB02DKPB4IVUJ8-fohIUD0gLfOp0P7B8,551
|
|
26
|
-
fast_agent/cli/main.py,sha256=
|
|
26
|
+
fast_agent/cli/main.py,sha256=H3brvpmDGE0g4WCJc2-volADCjpPmh7cSjedSfzqfOQ,4242
|
|
27
27
|
fast_agent/cli/terminal.py,sha256=tDN1fJ91Nc_wZJTNafkQuD7Z7gFscvo1PHh-t7Wl-5s,1066
|
|
28
28
|
fast_agent/cli/commands/check_config.py,sha256=nMiOBs-Sc7XqUU6tLReLn1JPXHqjR0Kuz4rCa3mDXp0,22831
|
|
29
|
-
fast_agent/cli/commands/go.py,sha256=
|
|
29
|
+
fast_agent/cli/commands/go.py,sha256=o9fT8161dDtLP2F0gWrndzitlPO7q7zvdeRoqs0PavE,15079
|
|
30
30
|
fast_agent/cli/commands/quickstart.py,sha256=hQZYlvktPdDNdaZOZkBgcvi8u0bMW5yFhz4BLBZ251I,21175
|
|
31
31
|
fast_agent/cli/commands/server_helpers.py,sha256=BmljUNLIcZdFpffYxEPfJf8rrX3JhTzMA7VONoZLAjM,3650
|
|
32
32
|
fast_agent/cli/commands/setup.py,sha256=rCp5wUs5kjbHJqi3Jz9ByCpOSvJ7L4KB0hpcKB8qpCM,6377
|
|
33
|
-
fast_agent/cli/commands/url_parser.py,sha256=
|
|
34
|
-
fast_agent/core/__init__.py,sha256=
|
|
33
|
+
fast_agent/cli/commands/url_parser.py,sha256=v9KoprPBEEST5Fo7qXgbW50GC5vMpxFteKqAT6mFkdI,5991
|
|
34
|
+
fast_agent/core/__init__.py,sha256=n2ly7SBtFko9H2DPVh8cSqfw9chtiUaokxLmiDpaMyU,2233
|
|
35
35
|
fast_agent/core/agent_app.py,sha256=cdzNwpb--SUNYbhkUX6RolqVnxJ5WSchxw5I4gFrvpk,16836
|
|
36
36
|
fast_agent/core/core_app.py,sha256=_8Di00HD2BzWhCAaopAUS0Hzc7pg0249QUUfPuLZ36A,4266
|
|
37
|
-
fast_agent/core/direct_decorators.py,sha256=
|
|
38
|
-
fast_agent/core/direct_factory.py,sha256=
|
|
39
|
-
fast_agent/core/error_handling.py,sha256=
|
|
37
|
+
fast_agent/core/direct_decorators.py,sha256=0U4_qJl7pdom9mjQ5qwCeb0zBwc5hj-lKFF6zXs62sI,22621
|
|
38
|
+
fast_agent/core/direct_factory.py,sha256=UiylXm5wkGZ9MOn1Fsj4-mB5r3UBFt4fD2Ol3R6jgBk,21340
|
|
39
|
+
fast_agent/core/error_handling.py,sha256=tZkO8LnXO-qf6jD8a12Pv5fD4NhnN1Ag5_tJ6DwbXjg,631
|
|
40
40
|
fast_agent/core/exceptions.py,sha256=ENAD_qGG67foxy6vDkIvc-lgopIUQy6O7zvNPpPXaQg,2289
|
|
41
|
-
fast_agent/core/fastagent.py,sha256=
|
|
41
|
+
fast_agent/core/fastagent.py,sha256=5f9jOteVVV7BzX3b_BsUSo_kdciVukVKw567uu-u3qE,30848
|
|
42
42
|
fast_agent/core/prompt.py,sha256=qNUFlK3KtU7leYysYUglzBYQnEYiXu__iR_T8189zc0,203
|
|
43
43
|
fast_agent/core/validation.py,sha256=GZ0hUTxkr5KMY1wr6_ifDy91Ycvcx384gZEMOwdie9w,12681
|
|
44
44
|
fast_agent/core/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -46,7 +46,7 @@ fast_agent/core/executor/executor.py,sha256=egmu1bBJmNjfkMZRdaF2CowyHu0t20TiroKB
|
|
|
46
46
|
fast_agent/core/executor/task_registry.py,sha256=PCALFeYtkQrPBg4RBJnlA0aDI8nHclrNkHGUS4kV3W8,1242
|
|
47
47
|
fast_agent/core/executor/workflow_signal.py,sha256=Cg1uZBk3fn8kXhPOg-wINNuVaf3v9pvLD6NbqWy5Z6E,11142
|
|
48
48
|
fast_agent/core/logging/__init__.py,sha256=dFW2bbTtz45zebUuQs7RVi7mg1RJm4DHH6TGfBMhW14,167
|
|
49
|
-
fast_agent/core/logging/events.py,sha256=
|
|
49
|
+
fast_agent/core/logging/events.py,sha256=WTjr26uIxtbxhnoLNPROVUIt0HNJrzK1g1fUMZ-zVsQ,4207
|
|
50
50
|
fast_agent/core/logging/json_serializer.py,sha256=kQDkwTHIkHSQgbhDOJhMoetNvfJVMZGOScaKoLX8kmw,5797
|
|
51
51
|
fast_agent/core/logging/listeners.py,sha256=dubbGJoieryyhXN-JF-GrjkW-dgMq93bElM-NBkwA_Q,9366
|
|
52
52
|
fast_agent/core/logging/logger.py,sha256=L-hLfUGFCIABoNYDiUkNHWvFxL6j-6zn5Pc5E7aC44M,11074
|
|
@@ -64,7 +64,7 @@ fast_agent/llm/memory.py,sha256=POFoBVMHK0wX4oLd3Gz-6Ru3uC4kTCvAqsVQ77e7KJA,8551
|
|
|
64
64
|
fast_agent/llm/model_database.py,sha256=CXpAncjfFGmzjVyvAaKE5QuvDoLwMWXqUHngv_4oDl8,12609
|
|
65
65
|
fast_agent/llm/model_factory.py,sha256=0quhsqz816GxEM_vuRaJ4n6U8C3lp5KxtIphxepIXVI,12862
|
|
66
66
|
fast_agent/llm/model_info.py,sha256=DAIMW70W-EFqNLIudhjHJE2gobHUAKg90gkwOPuaFUc,4125
|
|
67
|
-
fast_agent/llm/prompt_utils.py,sha256=
|
|
67
|
+
fast_agent/llm/prompt_utils.py,sha256=1WU67G-BFqftja5I8FKPMMzsvDk1K_1jDi9A9kkFdOg,4899
|
|
68
68
|
fast_agent/llm/provider_key_manager.py,sha256=igzs1ghXsUp0wA4nJVVfWCWiYOib8Ux4jMGlhWbgXu8,3396
|
|
69
69
|
fast_agent/llm/provider_types.py,sha256=Ya0MGo_4cE0oCwinqPvr9SJUwx4hEJ7CFbCrLB_27FI,1142
|
|
70
70
|
fast_agent/llm/request_params.py,sha256=OW9WnQAD-I2fz2JzMsqPY2wwwHFG0SI4yAvC1WxTfNY,1735
|
|
@@ -75,19 +75,19 @@ fast_agent/llm/internal/playback.py,sha256=HzV0BitORA977_3OWAbMZjLZpIHBKt-_PeOO3
|
|
|
75
75
|
fast_agent/llm/internal/silent.py,sha256=TVhjp0sEcPpR35n_QjYrMu0CKVX2humAt1GBR6y_itE,1563
|
|
76
76
|
fast_agent/llm/internal/slow.py,sha256=MQf21cK7aM0yPN1_j1hSJRTEp4UGbrPo_sCP81WDcxQ,1310
|
|
77
77
|
fast_agent/llm/provider/anthropic/anthropic_utils.py,sha256=zkeMpAlV9YW9pP1FObkyqR8wg8e-Xir9SCwsom94zao,3246
|
|
78
|
-
fast_agent/llm/provider/anthropic/llm_anthropic.py,sha256=
|
|
78
|
+
fast_agent/llm/provider/anthropic/llm_anthropic.py,sha256=EYd3_xy0OwSz4vM6XRkmQyG62_hTho-bsKpcg7CL9JI,25797
|
|
79
79
|
fast_agent/llm/provider/anthropic/multipart_converter_anthropic.py,sha256=fO6qoKvG2ede85CvdvMipOlATwLjbGKahvsu2OzJhvk,16460
|
|
80
80
|
fast_agent/llm/provider/bedrock/bedrock_utils.py,sha256=mqWCCeB1gUQSL2KRUMqpFjvHZ0ZTJugCsd5YOrx6U30,7750
|
|
81
|
-
fast_agent/llm/provider/bedrock/llm_bedrock.py,sha256=
|
|
81
|
+
fast_agent/llm/provider/bedrock/llm_bedrock.py,sha256=VSwl-UbU5Qh7umqNzQ5NofeO8p7aHhGl89eL4wTJchY,100199
|
|
82
82
|
fast_agent/llm/provider/google/google_converter.py,sha256=iQZps4773Bc8SUODduLpfkVpT3J1rIg1bFgLQ2CCqZc,18926
|
|
83
|
-
fast_agent/llm/provider/google/llm_google_native.py,sha256=
|
|
83
|
+
fast_agent/llm/provider/google/llm_google_native.py,sha256=Uzkz8GXH-tzRO1mHnO1N7qiLuPdQ5NFkRoSa9_3uAPc,19451
|
|
84
84
|
fast_agent/llm/provider/openai/llm_aliyun.py,sha256=ti7VHTpwl0AG3ytwBERpDzVtacvCfamKnl2bAnTE96s,1213
|
|
85
85
|
fast_agent/llm/provider/openai/llm_azure.py,sha256=O-TIEL6hGOArqRlvEjocaeW4OMUaelSnh6xpqhrrcHQ,6070
|
|
86
86
|
fast_agent/llm/provider/openai/llm_deepseek.py,sha256=aAMX7pd1qDfl54Z9pLvJTVYETc4yKKMRYrEMiPIhd7w,3762
|
|
87
87
|
fast_agent/llm/provider/openai/llm_generic.py,sha256=O_mmu3o9LeAZ6Kp405I-GfwrS8AuVkyX3tT6aCDCfLY,1168
|
|
88
88
|
fast_agent/llm/provider/openai/llm_google_oai.py,sha256=u1yZVeDds9z2hvydz_kUpFe2RANTNwEtlPgB-OEmgrY,1095
|
|
89
89
|
fast_agent/llm/provider/openai/llm_groq.py,sha256=trNSy3T94_fJWAhVn51iESP_J7sQh_23ufVegKKNHBs,5247
|
|
90
|
-
fast_agent/llm/provider/openai/llm_openai.py,sha256=
|
|
90
|
+
fast_agent/llm/provider/openai/llm_openai.py,sha256=I4qcAjqUsMDRJtNdSmol57XYar8rj0mqV3VRtkOCZ_8,22681
|
|
91
91
|
fast_agent/llm/provider/openai/llm_openrouter.py,sha256=RBTUkNBRqE8WoucCoVnXP5GhnMwc2tiRacXbMHVf1xM,1943
|
|
92
92
|
fast_agent/llm/provider/openai/llm_tensorzero_openai.py,sha256=yrV0kZ2zRohErdjhvWGDTl0OnPi2SbuzY_8MchXiVTU,5466
|
|
93
93
|
fast_agent/llm/provider/openai/llm_xai.py,sha256=fEyO9XlU3Ef1a-cXdJl0Qe-FmE562cA-UJOGvzqLO6M,1375
|
|
@@ -113,7 +113,7 @@ fast_agent/mcp/prompt_render.py,sha256=AqDaQqM6kqciV9X79S5rsRr3VjcQ_2JOiLaHqpRzs
|
|
|
113
113
|
fast_agent/mcp/prompt_serialization.py,sha256=oivhqW3WjKYMTw2zE6_LOt8PY7K1ktZr9z9dk1XH9I0,17906
|
|
114
114
|
fast_agent/mcp/resource_utils.py,sha256=cu-l9aOy-NFs8tPihYRNjsB2QSuime8KGOGpUvihp84,6589
|
|
115
115
|
fast_agent/mcp/sampling.py,sha256=3EhEguls5GpVMr_SYrVQcYSRXlryGmqidn-zbFaeDMk,6711
|
|
116
|
-
fast_agent/mcp/ui_agent.py,sha256=
|
|
116
|
+
fast_agent/mcp/ui_agent.py,sha256=OBGEuFpOPPK7EthPRwzxmtzu1SDIeZy-vHwdRsyDNQk,1424
|
|
117
117
|
fast_agent/mcp/ui_mixin.py,sha256=iOlSNJVPwiMUun0clCiWyot59Qgy8R7ZvUgH2afRnQA,7662
|
|
118
118
|
fast_agent/mcp/helpers/__init__.py,sha256=o6-HuX6bEVFnfT_wgclFOVb1NxtOsJEOnHX8L2IqDdw,857
|
|
119
119
|
fast_agent/mcp/helpers/content_helpers.py,sha256=2os7b6pZHLE-Nu9uEgw5yafQtadH9J2jyAG_g9Wk8uA,5828
|
|
@@ -127,8 +127,8 @@ fast_agent/mcp/prompts/prompt_server.py,sha256=yc7Ui_9nR0oQimZjX19wp4AkGJIWB8pYP
|
|
|
127
127
|
fast_agent/mcp/prompts/prompt_template.py,sha256=SAklXs9wujYqqEWv5vzRI_cdjSmGnWlDmPLZ5qkXZO4,15695
|
|
128
128
|
fast_agent/mcp/server/__init__.py,sha256=AJFNzdmuHPRL3jqFhDVDJste_zYE_KJ3gGYDsbghvl0,156
|
|
129
129
|
fast_agent/mcp/server/agent_server.py,sha256=zJMFnPfXPsbLt5ZyGMTN90YzIzwV7TaSQ4WYs9lnB2Q,20194
|
|
130
|
-
fast_agent/resources/examples/data-analysis/analysis-campaign.py,sha256=
|
|
131
|
-
fast_agent/resources/examples/data-analysis/analysis.py,sha256=
|
|
130
|
+
fast_agent/resources/examples/data-analysis/analysis-campaign.py,sha256=SnDQm_e_cm0IZEKdWizUedXxpIWWj-5K70wmcM1Tw2Y,7277
|
|
131
|
+
fast_agent/resources/examples/data-analysis/analysis.py,sha256=9ConAzZWtWRuEzmE3jCfH_AXoTyZiBVKAUkwg6PeFcA,2564
|
|
132
132
|
fast_agent/resources/examples/data-analysis/fastagent.config.yaml,sha256=ini94PHyJCfgpjcjHKMMbGuHs6LIj46F1NwY0ll5HVk,1609
|
|
133
133
|
fast_agent/resources/examples/data-analysis/mount-point/WA_Fn-UseC_-HR-Employee-Attrition.csv,sha256=pcMeOL1_r8m8MziE6xgbBrQbjl5Ijo98yycZn7O-dlk,227977
|
|
134
134
|
fast_agent/resources/examples/mcp/elicitations/elicitation_account_server.py,sha256=ZrPcj0kv75QXvtN0J_vhCmwxycnAodv35adUBZ9_8Ss,2903
|
|
@@ -136,26 +136,26 @@ fast_agent/resources/examples/mcp/elicitations/elicitation_forms_server.py,sha25
|
|
|
136
136
|
fast_agent/resources/examples/mcp/elicitations/elicitation_game_server.py,sha256=z9kHdNc6XWjAWkvet7inVBIcYxfWoxU6n9iHrsEqU7A,6206
|
|
137
137
|
fast_agent/resources/examples/mcp/elicitations/fastagent.config.yaml,sha256=HPe0cuFL4-rzS4hHNgZiLMPEv0jYXOp7iSsrUliAaqs,1080
|
|
138
138
|
fast_agent/resources/examples/mcp/elicitations/fastagent.secrets.yaml.example,sha256=1vkBmh9f4mnQZm6-2B7vyU1OepImviPW5MNAJkvUIPE,394
|
|
139
|
-
fast_agent/resources/examples/mcp/elicitations/forms_demo.py,sha256=
|
|
140
|
-
fast_agent/resources/examples/mcp/elicitations/game_character.py,sha256=
|
|
139
|
+
fast_agent/resources/examples/mcp/elicitations/forms_demo.py,sha256=Bs4EWWGRkRdABq-AvdV8Y5oN49c7-oDG2yC6C1W--14,4336
|
|
140
|
+
fast_agent/resources/examples/mcp/elicitations/game_character.py,sha256=Br91dWo7qXOxYmZOYgRt-IxiQ6oCHHxI2jwN32HWsAo,2359
|
|
141
141
|
fast_agent/resources/examples/mcp/elicitations/game_character_handler.py,sha256=kD4aBZ98GoKDqCKTVlTqsNaQZifUxbfYXHPA93aTGSE,11217
|
|
142
|
-
fast_agent/resources/examples/mcp/elicitations/tool_call.py,sha256=
|
|
143
|
-
fast_agent/resources/examples/mcp/state-transfer/agent_one.py,sha256=
|
|
144
|
-
fast_agent/resources/examples/mcp/state-transfer/agent_two.py,sha256=
|
|
142
|
+
fast_agent/resources/examples/mcp/elicitations/tool_call.py,sha256=14cNyAaYfmZtOY2QC0uJzRGXxh8NNZ5-PhAXjGA-z1s,516
|
|
143
|
+
fast_agent/resources/examples/mcp/state-transfer/agent_one.py,sha256=4Rm7m59WoObfl20XxGfqzrgOlpgpqBkSscwk4n5Wv2A,441
|
|
144
|
+
fast_agent/resources/examples/mcp/state-transfer/agent_two.py,sha256=deiJmGDJHWspaVIluGraXEmWWam_Eei41jjfGq9Yzig,464
|
|
145
145
|
fast_agent/resources/examples/mcp/state-transfer/fastagent.config.yaml,sha256=A6CUcDqnFXlkhsA_Mw-I0ys2Egn7a37AfVSWl89lvxA,797
|
|
146
146
|
fast_agent/resources/examples/mcp/state-transfer/fastagent.secrets.yaml.example,sha256=pVGyO_c6j3BToNpnL0d6W1FD5iLcuCNBrqA1sYMV-cA,422
|
|
147
147
|
fast_agent/resources/examples/researcher/fastagent.config.yaml,sha256=TbVMHQCKcytVr44o0cpsgP-tAJ2S2OlTgn6VnXSTIpM,2242
|
|
148
|
-
fast_agent/resources/examples/researcher/researcher-eval.py,sha256=
|
|
149
|
-
fast_agent/resources/examples/researcher/researcher-imp.py,sha256=
|
|
150
|
-
fast_agent/resources/examples/researcher/researcher.py,sha256=
|
|
148
|
+
fast_agent/resources/examples/researcher/researcher-eval.py,sha256=MATCUXSiYh0JXvl-PrjS7gmaFsFxDWvfsAtLf3_jht0,1819
|
|
149
|
+
fast_agent/resources/examples/researcher/researcher-imp.py,sha256=XjlhxhpUYO6t8IJp8pXXg4nL-8weqe3IqzT4PM-ZiK8,7865
|
|
150
|
+
fast_agent/resources/examples/researcher/researcher.py,sha256=u4IpLvl58gvmCYdj_0jCGDaJbqZWWtIaJnrlD9C7TzI,1319
|
|
151
151
|
fast_agent/resources/examples/tensorzero/.env.sample,sha256=khV_apbP4XprpNuIaeVicnHaVHEkwIdWGyZCvW1OLDc,35
|
|
152
152
|
fast_agent/resources/examples/tensorzero/Makefile,sha256=BOvcJvPBAJN2MDh8brLsy2leHGwuT_bBjPzakOsUSCU,427
|
|
153
153
|
fast_agent/resources/examples/tensorzero/README.md,sha256=xsA1qWjg2mI240jlbeFYWjYm_pQLsGeQiPiSlEtayeQ,2126
|
|
154
|
-
fast_agent/resources/examples/tensorzero/agent.py,sha256=
|
|
154
|
+
fast_agent/resources/examples/tensorzero/agent.py,sha256=Njxm2Nix-Vdil5XYokkBvFJdAHJOINdrI8__gPccEZw,1258
|
|
155
155
|
fast_agent/resources/examples/tensorzero/docker-compose.yml,sha256=YgmWgoHHDDTGeqRlU8Z21mLdEqo48IoKZsnlXaDZkrc,2851
|
|
156
156
|
fast_agent/resources/examples/tensorzero/fastagent.config.yaml,sha256=3uJJ9p-0evDG48zr2QneektO4fe_h4uRPh1dyWfe7-k,355
|
|
157
|
-
fast_agent/resources/examples/tensorzero/image_demo.py,sha256=
|
|
158
|
-
fast_agent/resources/examples/tensorzero/simple_agent.py,sha256=
|
|
157
|
+
fast_agent/resources/examples/tensorzero/image_demo.py,sha256=ChaNOlEa3Vk5fIpalvu4mCL0PwxIOHeCorU41qDSU0o,2109
|
|
158
|
+
fast_agent/resources/examples/tensorzero/simple_agent.py,sha256=_eVVpWk-ae1qllK2WWbRi-qKo6FzIcmLb3G4CGlB91U,844
|
|
159
159
|
fast_agent/resources/examples/tensorzero/demo_images/clam.jpg,sha256=K1NWrhz5QMfgjZfDMMIVctWwbwTyJSsPHLDaUMbcn18,22231
|
|
160
160
|
fast_agent/resources/examples/tensorzero/demo_images/crab.png,sha256=W7R3bSKKDmZCjxJEmFk0pBXVhXXhfPGM1gIiVuv_eu4,58413
|
|
161
161
|
fast_agent/resources/examples/tensorzero/demo_images/shrimp.png,sha256=2r3c6yHE25MpVRDTTwxjAGs1ShJ2UI-qxJqbxa-9ew4,7806
|
|
@@ -166,19 +166,19 @@ fast_agent/resources/examples/tensorzero/mcp_server/pyproject.toml,sha256=3AppZ_
|
|
|
166
166
|
fast_agent/resources/examples/tensorzero/tensorzero_config/system_schema.json,sha256=q81vtb8eyX1gU0qOhT_BFNo7nI2Lg2o-D_Bvp8watEI,626
|
|
167
167
|
fast_agent/resources/examples/tensorzero/tensorzero_config/system_template.minijinja,sha256=_Ekz9YuE76pkmwtcMNJeDlih2U5vPRgFB5wFojAVde8,501
|
|
168
168
|
fast_agent/resources/examples/tensorzero/tensorzero_config/tensorzero.toml,sha256=wYDKzHyX0A2x42d1vF5a72ot304iTP8_i5Y1rzAcCEA,890
|
|
169
|
-
fast_agent/resources/examples/workflows/chaining.py,sha256=
|
|
170
|
-
fast_agent/resources/examples/workflows/evaluator.py,sha256=
|
|
169
|
+
fast_agent/resources/examples/workflows/chaining.py,sha256=4scVT0znHkFO3XACsWLFWU28guUB32ZPU3ThTktJ4mQ,875
|
|
170
|
+
fast_agent/resources/examples/workflows/evaluator.py,sha256=d0If_G14JeZwvRTugz3FPV18FWQBQmfj-cuZpxZXHzs,3097
|
|
171
171
|
fast_agent/resources/examples/workflows/fastagent.config.yaml,sha256=qaxk-p7Pl7JepdL3a7BTl0CIp4LHCXies7pFdVWS9xk,783
|
|
172
172
|
fast_agent/resources/examples/workflows/graded_report.md,sha256=QVF38xEtDIO1a2P-xv2hlBEG6KKYughtFkzDhY2NpzE,2726
|
|
173
|
-
fast_agent/resources/examples/workflows/human_input.py,sha256=
|
|
174
|
-
fast_agent/resources/examples/workflows/orchestrator.py,sha256=
|
|
175
|
-
fast_agent/resources/examples/workflows/parallel.py,sha256=
|
|
176
|
-
fast_agent/resources/examples/workflows/router.py,sha256=
|
|
173
|
+
fast_agent/resources/examples/workflows/human_input.py,sha256=gFuptgiU0mMMtv3F1XI7syCSyVV8tyi5qTOn9ziJdWI,792
|
|
174
|
+
fast_agent/resources/examples/workflows/orchestrator.py,sha256=YWSgH8cDqEuWercgof2aZLbrO0idiSL932ym3lrniNM,2526
|
|
175
|
+
fast_agent/resources/examples/workflows/parallel.py,sha256=kROiRueTm0Wql4EWVjFSyonV5A4gPepm1jllz5alias,1826
|
|
176
|
+
fast_agent/resources/examples/workflows/router.py,sha256=lxMxz6g0_XjYnwzEwKdl9l2hxRsD4PSsaIlhH5nLuQY,2075
|
|
177
177
|
fast_agent/resources/examples/workflows/short_story.md,sha256=XN9I2kzCcMmke3dE5F2lyRH5iFUZUQ8Sy-hS3rm_Wlc,1153
|
|
178
178
|
fast_agent/resources/examples/workflows/short_story.txt,sha256=X3y_1AyhLFN2AKzCKvucJtDgAFIJfnlbsbGZO5bBWu0,1187
|
|
179
179
|
fast_agent/resources/setup/.gitignore,sha256=UQKYvhK6samGg5JZg613XiuGUkUAz2qzE1WfFa8J0mQ,245
|
|
180
|
-
fast_agent/resources/setup/agent.py,sha256=
|
|
181
|
-
fast_agent/resources/setup/fastagent.config.yaml,sha256=
|
|
180
|
+
fast_agent/resources/setup/agent.py,sha256=cRQfWFkWJxF1TkWASXf8nuHbIDUgyk5o23vyoroSBOY,407
|
|
181
|
+
fast_agent/resources/setup/fastagent.config.yaml,sha256=6X4wywcThmaIyX7yayr0bTAl1AavYqF_T3UVbyyqTPI,1464
|
|
182
182
|
fast_agent/resources/setup/fastagent.secrets.yaml.example,sha256=ht-i2_SpAyeXG2OnG_vOA1n7gRsGIInxp9g5Nio-jpI,1038
|
|
183
183
|
fast_agent/resources/setup/pyproject.toml.tmpl,sha256=b_dL9TBAzA4sPOkVZd3psMKFT-g_gef0n2NcANojEqs,343
|
|
184
184
|
fast_agent/tools/elicitation.py,sha256=8FaNvuN__LAM328VSJ5T4Bg3m8auHraqYvIYv6Eh4KU,13464
|
|
@@ -191,13 +191,13 @@ fast_agent/ui/elicitation_form.py,sha256=t3UhBG44YmxTLu1RjCnHwW36eQQaroE45CiBGJB
|
|
|
191
191
|
fast_agent/ui/elicitation_style.py,sha256=rtZiJH4CwTdkDLSzDDvThlZyIyuRX0oVNzscKiHvry8,3835
|
|
192
192
|
fast_agent/ui/enhanced_prompt.py,sha256=w99sJkdAn2WVtIT9hLumhz1DQY-H9a0Qq80JSM0jRg8,40080
|
|
193
193
|
fast_agent/ui/interactive_prompt.py,sha256=lxY26PNBNihtccO4iI7CxIag_9CxEcbajbIPdzqnEcM,43230
|
|
194
|
-
fast_agent/ui/mcp_ui_utils.py,sha256=
|
|
194
|
+
fast_agent/ui/mcp_ui_utils.py,sha256=hV7z-yHX86BgdH6CMmN5qyOUjyiegQXLJOa5n5A1vQs,8476
|
|
195
195
|
fast_agent/ui/mermaid_utils.py,sha256=MpcRyVCPMTwU1XeIxnyFg0fQLjcyXZduWRF8NhEqvXE,5332
|
|
196
196
|
fast_agent/ui/progress_display.py,sha256=hajDob65PttiJ2mPS6FsCtnmTcnyvDWGn-UqQboXqkQ,361
|
|
197
|
-
fast_agent/ui/rich_progress.py,sha256=
|
|
197
|
+
fast_agent/ui/rich_progress.py,sha256=jy6VuUOYFkWXdyvnRTSBPAmmNAP6TJDFw_lgbt_YYLo,7548
|
|
198
198
|
fast_agent/ui/usage_display.py,sha256=ltJpn_sDzo8PDNSXWx-QdEUbQWUnhmajCItNt5mA5rM,7285
|
|
199
|
-
fast_agent_mcp-0.3.
|
|
200
|
-
fast_agent_mcp-0.3.
|
|
201
|
-
fast_agent_mcp-0.3.
|
|
202
|
-
fast_agent_mcp-0.3.
|
|
203
|
-
fast_agent_mcp-0.3.
|
|
199
|
+
fast_agent_mcp-0.3.4.dist-info/METADATA,sha256=g7siNgLm38P10584TCI_XYthtE4ThNMoTfHFxG6VWg0,30447
|
|
200
|
+
fast_agent_mcp-0.3.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
201
|
+
fast_agent_mcp-0.3.4.dist-info/entry_points.txt,sha256=i6Ujja9J-hRxttOKqTYdbYP_tyaS4gLHg53vupoCSsg,199
|
|
202
|
+
fast_agent_mcp-0.3.4.dist-info/licenses/LICENSE,sha256=Gx1L3axA4PnuK4FxsbX87jQ1opoOkSFfHHSytW6wLUU,10935
|
|
203
|
+
fast_agent_mcp-0.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|