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.

Files changed (49) hide show
  1. fast_agent/__init__.py +6 -3
  2. fast_agent/agents/__init__.py +63 -14
  3. fast_agent/agents/llm_decorator.py +2 -1
  4. fast_agent/agents/tool_agent.py +4 -1
  5. fast_agent/agents/workflow/orchestrator_models.py +1 -1
  6. fast_agent/cli/commands/go.py +1 -1
  7. fast_agent/cli/commands/url_parser.py +3 -3
  8. fast_agent/cli/main.py +7 -1
  9. fast_agent/config.py +6 -0
  10. fast_agent/core/__init__.py +65 -25
  11. fast_agent/core/direct_decorators.py +85 -103
  12. fast_agent/core/direct_factory.py +1 -1
  13. fast_agent/core/error_handling.py +1 -1
  14. fast_agent/core/fastagent.py +153 -34
  15. fast_agent/core/logging/events.py +4 -9
  16. fast_agent/llm/prompt_utils.py +10 -4
  17. fast_agent/llm/provider/anthropic/llm_anthropic.py +16 -5
  18. fast_agent/llm/provider/bedrock/llm_bedrock.py +13 -5
  19. fast_agent/llm/provider/google/llm_google_native.py +13 -2
  20. fast_agent/llm/provider/openai/llm_openai.py +22 -13
  21. fast_agent/mcp/ui_agent.py +1 -1
  22. fast_agent/resources/examples/data-analysis/analysis-campaign.py +1 -1
  23. fast_agent/resources/examples/data-analysis/analysis.py +1 -1
  24. fast_agent/resources/examples/mcp/elicitations/forms_demo.py +1 -1
  25. fast_agent/resources/examples/mcp/elicitations/game_character.py +1 -1
  26. fast_agent/resources/examples/mcp/elicitations/tool_call.py +1 -1
  27. fast_agent/resources/examples/mcp/state-transfer/agent_one.py +1 -1
  28. fast_agent/resources/examples/mcp/state-transfer/agent_two.py +1 -1
  29. fast_agent/resources/examples/researcher/researcher-eval.py +1 -1
  30. fast_agent/resources/examples/researcher/researcher-imp.py +1 -1
  31. fast_agent/resources/examples/researcher/researcher.py +1 -1
  32. fast_agent/resources/examples/tensorzero/agent.py +1 -1
  33. fast_agent/resources/examples/tensorzero/image_demo.py +1 -1
  34. fast_agent/resources/examples/tensorzero/simple_agent.py +1 -1
  35. fast_agent/resources/examples/workflows/chaining.py +1 -1
  36. fast_agent/resources/examples/workflows/evaluator.py +1 -1
  37. fast_agent/resources/examples/workflows/human_input.py +1 -1
  38. fast_agent/resources/examples/workflows/orchestrator.py +1 -1
  39. fast_agent/resources/examples/workflows/parallel.py +1 -1
  40. fast_agent/resources/examples/workflows/router.py +1 -1
  41. fast_agent/resources/setup/agent.py +1 -1
  42. fast_agent/resources/setup/fastagent.config.yaml +1 -0
  43. fast_agent/ui/mcp_ui_utils.py +12 -1
  44. fast_agent/ui/rich_progress.py +8 -6
  45. {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/METADATA +2 -2
  46. {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/RECORD +49 -49
  47. {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/WHEEL +0 -0
  48. {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/entry_points.txt +0 -0
  49. {fast_agent_mcp-0.3.2.dist-info → fast_agent_mcp-0.3.4.dist-info}/licenses/LICENSE +0 -0
@@ -4,7 +4,7 @@ This demonstrates creating an optimizer and evaluator to iteratively improve con
4
4
 
5
5
  import asyncio
6
6
 
7
- from fast_agent.core.fastagent import FastAgent
7
+ from fast_agent import FastAgent
8
8
 
9
9
  # Create the application
10
10
  fast = FastAgent("Evaluator-Optimizer")
@@ -4,7 +4,7 @@ Agent which demonstrates Human Input tool
4
4
 
5
5
  import asyncio
6
6
 
7
- from fast_agent.core.fastagent import FastAgent
7
+ from fast_agent import FastAgent
8
8
 
9
9
  # Create the application
10
10
  fast = FastAgent("Human Input")
@@ -4,7 +4,7 @@ This demonstrates creating multiple agents and an orchestrator to coordinate the
4
4
 
5
5
  import asyncio
6
6
 
7
- from fast_agent.core.fastagent import FastAgent
7
+ from fast_agent import FastAgent
8
8
 
9
9
  # Create the application
10
10
  fast = FastAgent("Orchestrator-Workers")
@@ -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.core.fastagent import FastAgent
8
+ from fast_agent import FastAgent
9
9
  from fast_agent.core.prompt import Prompt
10
10
 
11
11
  # Create the application
@@ -9,7 +9,7 @@ import asyncio
9
9
 
10
10
  from rich.console import Console
11
11
 
12
- from fast_agent.core.fastagent import FastAgent
12
+ from fast_agent import FastAgent
13
13
 
14
14
  # Create the application
15
15
  fast = FastAgent(
@@ -1,6 +1,6 @@
1
1
  import asyncio
2
2
 
3
- from fast_agent.core.fastagent import FastAgent
3
+ from fast_agent import FastAgent
4
4
 
5
5
  # Create the application
6
6
  fast = FastAgent("fast-agent example")
@@ -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:
@@ -39,7 +39,18 @@ def _safe_filename(name: str) -> str:
39
39
 
40
40
 
41
41
  def _ensure_output_dir() -> Path:
42
- base = Path.cwd() / ".fastagent" / "ui"
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
 
@@ -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
- "target": event.target or task_name, # Use task_name as fallback for target
140
- "details": event.details or "",
141
- "task_name": task_name,
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.2
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.core.fastagent import FastAgent
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=sljPsYHqDmv5v0fBpQdhtwBm5IDyu37lwdSQA0IPEwQ,3628
2
- fast_agent/config.py,sha256=8CPbTctXGdSneAkMory5ZRXkUsUj4AyKnaf_nmEamQA,19886
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=kBI2VWTitLyWf8K3dFMyuE-K7Ufp7mkHBomM2K3I8H8,1128
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=yzaYqsT8lqey4dbZrv1oK9qUqf8I2RMPYiWOy0uVHqA,16443
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=zSaVQH-mBICgE3ildeZx24i00u_KMOk5P4OuJBTiQ3g,6571
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=X_hD66_YvdGIsNra3XWbVKj2KyNVL7usCdNsMsDXV3Q,7238
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=EkNOpNobFW83fkzJL4lkdhtqOq7c_f55KFpBR9VrFTU,3905
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=VRiHq9h1UGIndLdQJMAwEM6bwTGy-h5n6w__bYCGaHM,15094
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=ivWrsODeVO9GGERkaTawYIxZuf57uRga1gubwT3n3vU,5907
34
- fast_agent/core/__init__.py,sha256=RsHaeZTQmmNC6cd--kGsnu-jp053cr7h0TUMEnBcMQ0,1223
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=eHhQfKLbeaoH-W0snzAVJRxga7wTNGXBk5DEJTAbZB8,23642
38
- fast_agent/core/direct_factory.py,sha256=HGGnnF4Z9k_N3r0Iin_sp2Ch308To1oKX8JTKHjuUq0,21350
39
- fast_agent/core/error_handling.py,sha256=xoyS2kLe0eG0bj2eSJCJ2odIhGUve2SbDR7jP-A-uRw,624
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=PJPeRREuQqlqdVub7RqamfsArpoZ1D50B8Hz-CsDenA,26792
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=kmk6sWxYm4DZGRRNVUi2cOL4X1Pr1cr535uBmStBZxo,4254
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=yWQHykoK13QRF7evHUKxVF0SpVLN-Bsft0Yixzvn0g0,4825
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=GGfNM9dTVy17YTGOxaat-YlJlW2iWi-pcBmVg_ejJPE,25288
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=XGB4bGZt74nQnGz0LY4HOSffdaRbz-5UWXX6fyjPPmk,99755
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=jHJ3dXDltFE9tJhvPe8OuHardIHAJqmDrJkhYpYZkeY,18843
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=OW1IwDn9sKBoITwUZYc3kHNyRLzJnC4qYcBwVytG8eA,22196
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=nrnBGS87hHdpbS_9Vl59Z6ar6FKTZMz9Yhmz_9FM8dY,1434
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=0Z7TZ6QsSwYJPGJZRMl8742980QHDgibC6Jjw2jOHms,7292
131
- fast_agent/resources/examples/data-analysis/analysis.py,sha256=y9lSSZp_HfgiJy0M23heYSI61bazK89PIzM9m1nVP_o,2579
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=caC7UFs2-vWEWporu9deqpfSJOYya482kr-tIIWC9U4,4351
140
- fast_agent/resources/examples/mcp/elicitations/game_character.py,sha256=Me4-vNsjZTFkV95fUXMYpmDaT8v6hnXsXey9eh53W8k,2374
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=HgaP1AP96As9Vql69Ov2CXH4uPccjOeZSRa0n8-hBGc,531
143
- fast_agent/resources/examples/mcp/state-transfer/agent_one.py,sha256=lVEIidIcFyeYwsR6h_2h5Rnmfu_KnHIrRo53Aehg85Q,456
144
- fast_agent/resources/examples/mcp/state-transfer/agent_two.py,sha256=7TC2Z3uuL-x27LXGweh7ziHwDXFZYJq9f5x-DAWTsqM,479
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=qr_9TpzOSwEFENR5bkgieDyIrbst6nWjtlwDJzp7ok4,1834
149
- fast_agent/resources/examples/researcher/researcher-imp.py,sha256=LmNcs6rOYnJabspxo6xgpiI9tzHVE1sJUFwLK3QrV2E,7880
150
- fast_agent/resources/examples/researcher/researcher.py,sha256=MZfGvHfxqutzkCNEkAKioXGxHn-E4JggRQQz43wV5pM,1334
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=TCa3eIsvQufJ8Gy1yXK0MjgOEtdiU8y5qpjIARTyypU,1273
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=fq1Ac1ZksL_AiMN1T2r-tBRW79sWtbEY_QCViLsIAMQ,2124
158
- fast_agent/resources/examples/tensorzero/simple_agent.py,sha256=jpK4p3KbfOfjhqLJNUFX4L_zll05buI2Cru8JBRnrIY,859
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=GOBAwn97Io0mNe6H6l7UKENqsR6FL03HKgcXYhMTUCA,890
170
- fast_agent/resources/examples/workflows/evaluator.py,sha256=gfdjKctKpEiPB23gqgkVpJ_patBuotqt8IFuPTG5i8g,3112
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=ammL7aU_U0K3XsjLwmgq0_HznaARVDO8urPEWJYbWqY,807
174
- fast_agent/resources/examples/workflows/orchestrator.py,sha256=E99EqLNHKjC9YtuME-HqT0lNCCxiJJPdy2jToOEL7zw,2541
175
- fast_agent/resources/examples/workflows/parallel.py,sha256=JJRxUdEgqHYW5-_ZIFDb4oUx8gsZicyxYwCPYmNWsDE,1841
176
- fast_agent/resources/examples/workflows/router.py,sha256=_XLOsjrjmLe2i-eGmClPASGJjaf57RVQjld6uCuv_Lk,2090
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=co2lm190iQqOlRhup78X5BKHSB-RqLn3tZdxh2yaGhA,422
181
- fast_agent/resources/setup/fastagent.config.yaml,sha256=JpezZSP5-ybUlZJaeQG1EoUONXmzmDhdAR6JIpbb-jA,1356
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=UVX-VZI7PaJ8JlYuWsletml4K3XrUGUFRn4lqFwsAWg,8099
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=vMeDD5cybsPf_0IjOM98U8TVaE_yYIOKZa8JnRgTYUo,7451
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.2.dist-info/METADATA,sha256=iaD5FYCGdDqTIAnGvq32PatCS2P-SbVzy-x79bmfIUA,30462
200
- fast_agent_mcp-0.3.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
201
- fast_agent_mcp-0.3.2.dist-info/entry_points.txt,sha256=i6Ujja9J-hRxttOKqTYdbYP_tyaS4gLHg53vupoCSsg,199
202
- fast_agent_mcp-0.3.2.dist-info/licenses/LICENSE,sha256=Gx1L3axA4PnuK4FxsbX87jQ1opoOkSFfHHSytW6wLUU,10935
203
- fast_agent_mcp-0.3.2.dist-info/RECORD,,
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,,