fast-agent-mcp 0.3.3__py3-none-any.whl → 0.3.5__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/cli/__main__.py +8 -5
- fast_agent/cli/commands/auth.py +370 -0
- fast_agent/cli/commands/check_config.py +54 -3
- fast_agent/cli/commands/go.py +1 -1
- fast_agent/cli/commands/quickstart.py +3 -1
- fast_agent/cli/commands/server_helpers.py +10 -2
- fast_agent/cli/commands/setup.py +3 -2
- fast_agent/cli/constants.py +1 -1
- fast_agent/cli/main.py +3 -1
- fast_agent/config.py +63 -8
- fast_agent/core/__init__.py +38 -37
- fast_agent/core/direct_factory.py +1 -1
- fast_agent/mcp/mcp_connection_manager.py +21 -3
- fast_agent/mcp/oauth_client.py +481 -0
- 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 +2 -2
- fast_agent/ui/mcp_ui_utils.py +12 -1
- {fast_agent_mcp-0.3.3.dist-info → fast_agent_mcp-0.3.5.dist-info}/METADATA +40 -3
- {fast_agent_mcp-0.3.3.dist-info → fast_agent_mcp-0.3.5.dist-info}/RECORD +44 -42
- {fast_agent_mcp-0.3.3.dist-info → fast_agent_mcp-0.3.5.dist-info}/WHEEL +0 -0
- {fast_agent_mcp-0.3.3.dist-info → fast_agent_mcp-0.3.5.dist-info}/entry_points.txt +0 -0
- {fast_agent_mcp-0.3.3.dist-info → fast_agent_mcp-0.3.5.dist-info}/licenses/LICENSE +0 -0
|
@@ -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:
|
|
@@ -40,5 +41,4 @@ mcp:
|
|
|
40
41
|
command: "npx"
|
|
41
42
|
args: ["-y", "@modelcontextprotocol/server-filesystem", "."]
|
|
42
43
|
huggingface:
|
|
43
|
-
|
|
44
|
-
url: "https://huggingface.co/mcp"
|
|
44
|
+
url: "https://huggingface.co/mcp?login"
|
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
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fast-agent-mcp
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.5
|
|
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
|
|
@@ -208,7 +208,7 @@ License-File: LICENSE
|
|
|
208
208
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
209
209
|
Classifier: Operating System :: OS Independent
|
|
210
210
|
Classifier: Programming Language :: Python :: 3
|
|
211
|
-
Requires-Python: >=3.13.
|
|
211
|
+
Requires-Python: >=3.13.5
|
|
212
212
|
Requires-Dist: a2a-sdk>=0.3.0
|
|
213
213
|
Requires-Dist: aiohttp>=3.11.13
|
|
214
214
|
Requires-Dist: anthropic>=0.66.0
|
|
@@ -218,6 +218,7 @@ Requires-Dist: deprecated>=1.2.18
|
|
|
218
218
|
Requires-Dist: email-validator>=2.2.0
|
|
219
219
|
Requires-Dist: fastapi>=0.115.6
|
|
220
220
|
Requires-Dist: google-genai>=1.33.0
|
|
221
|
+
Requires-Dist: keyring>=24.3.1
|
|
221
222
|
Requires-Dist: mcp==1.14.0
|
|
222
223
|
Requires-Dist: openai>=1.106.1
|
|
223
224
|
Requires-Dist: opentelemetry-distro>=0.55b0
|
|
@@ -321,7 +322,7 @@ Here is the complete `sizer.py` Agent application, with boilerplate code:
|
|
|
321
322
|
|
|
322
323
|
```python
|
|
323
324
|
import asyncio
|
|
324
|
-
from fast_agent
|
|
325
|
+
from fast_agent import FastAgent
|
|
325
326
|
|
|
326
327
|
# Create the application
|
|
327
328
|
fast = FastAgent("Agent Example")
|
|
@@ -380,6 +381,42 @@ uv run workflow/chaining.py --agent post_writer --message "<url>"
|
|
|
380
381
|
|
|
381
382
|
Add the `--quiet` switch to disable progress and message display and return only the final response - useful for simple automations.
|
|
382
383
|
|
|
384
|
+
## MCP OAuth (v2.1)
|
|
385
|
+
|
|
386
|
+
For SSE and HTTP MCP servers, OAuth is enabled by default with minimal configuration. A local callback server is used to capture the authorization code, with a paste-URL fallback if the port is unavailable.
|
|
387
|
+
|
|
388
|
+
- Minimal per-server settings in `fastagent.config.yaml`:
|
|
389
|
+
|
|
390
|
+
```yaml
|
|
391
|
+
mcp:
|
|
392
|
+
servers:
|
|
393
|
+
myserver:
|
|
394
|
+
transport: http # or sse
|
|
395
|
+
url: http://localhost:8001/mcp # or /sse for SSE servers
|
|
396
|
+
auth:
|
|
397
|
+
oauth: true # default: true
|
|
398
|
+
redirect_port: 3030 # default: 3030
|
|
399
|
+
redirect_path: /callback # default: /callback
|
|
400
|
+
# scope: "user" # optional; if omitted, server defaults are used
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
- The OAuth client uses PKCE and in-memory token storage (no tokens written to disk).
|
|
404
|
+
- Token persistence: by default, tokens are stored securely in your OS keychain via `keyring`. If a keychain is unavailable (e.g., headless container), in-memory storage is used for the session.
|
|
405
|
+
- To force in-memory only per server, set:
|
|
406
|
+
|
|
407
|
+
```yaml
|
|
408
|
+
mcp:
|
|
409
|
+
servers:
|
|
410
|
+
myserver:
|
|
411
|
+
transport: http
|
|
412
|
+
url: http://localhost:8001/mcp
|
|
413
|
+
auth:
|
|
414
|
+
oauth: true
|
|
415
|
+
persist: memory
|
|
416
|
+
```
|
|
417
|
+
|
|
418
|
+
- To disable OAuth for a specific server , set `auth.oauth: false` for that server.
|
|
419
|
+
|
|
383
420
|
## Workflows
|
|
384
421
|
|
|
385
422
|
### Chain
|
|
@@ -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=f_43QrqB83-Q4ltkGUSiHLyiDcyzWAI9bhLx2Ocxn5E,22367
|
|
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,7 +7,7 @@ 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
13
|
fast_agent/agents/llm_decorator.py,sha256=IhvMOZVjo1qT4GII0KP000VYTCprzBQBGZPbZwBIEd0,16485
|
|
@@ -21,21 +21,22 @@ fast_agent/agents/workflow/orchestrator_prompts.py,sha256=EXKEI174sshkZyPPEnWbww
|
|
|
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
|
-
fast_agent/cli/__main__.py,sha256=
|
|
25
|
-
fast_agent/cli/constants.py,sha256=
|
|
26
|
-
fast_agent/cli/main.py,sha256=
|
|
24
|
+
fast_agent/cli/__main__.py,sha256=iF9mNX1ja9Ea9T6gzNg9nfYAuei_vRowfHpUPiFbJVI,1260
|
|
25
|
+
fast_agent/cli/constants.py,sha256=flYDsml3_8wVcGg7T1t5mPFT9CC1M-XMjBigXjX6PuI,559
|
|
26
|
+
fast_agent/cli/main.py,sha256=tERbfQjure3kgKYqzZCNDSLyiVZGXCH2coZ8YBwvq64,4398
|
|
27
27
|
fast_agent/cli/terminal.py,sha256=tDN1fJ91Nc_wZJTNafkQuD7Z7gFscvo1PHh-t7Wl-5s,1066
|
|
28
|
-
fast_agent/cli/commands/
|
|
29
|
-
fast_agent/cli/commands/
|
|
30
|
-
fast_agent/cli/commands/
|
|
31
|
-
fast_agent/cli/commands/
|
|
32
|
-
fast_agent/cli/commands/
|
|
28
|
+
fast_agent/cli/commands/auth.py,sha256=qLCuXt27i3v3KVLRCAsy1iK9KnU05nJjpsQOXDaoSrA,13547
|
|
29
|
+
fast_agent/cli/commands/check_config.py,sha256=23HahZ9ANyi1wtSN9Fp1ACHhpcAhjxIiSIT1bhwHYPQ,25628
|
|
30
|
+
fast_agent/cli/commands/go.py,sha256=o9fT8161dDtLP2F0gWrndzitlPO7q7zvdeRoqs0PavE,15079
|
|
31
|
+
fast_agent/cli/commands/quickstart.py,sha256=CiSen7VxmKDy7apJZ8rAyC33-BIo0zsUt8cBnEtxg0Y,21241
|
|
32
|
+
fast_agent/cli/commands/server_helpers.py,sha256=Nuded8sZb4Rybwoq5LbXXUgwtJZg-OO04xhmPUp6e98,4073
|
|
33
|
+
fast_agent/cli/commands/setup.py,sha256=SEp2omVBNJcfueqqr_ru-ulewepJZ-vjO2mHf7tVqJg,6410
|
|
33
34
|
fast_agent/cli/commands/url_parser.py,sha256=v9KoprPBEEST5Fo7qXgbW50GC5vMpxFteKqAT6mFkdI,5991
|
|
34
|
-
fast_agent/core/__init__.py,sha256=
|
|
35
|
+
fast_agent/core/__init__.py,sha256=n2ly7SBtFko9H2DPVh8cSqfw9chtiUaokxLmiDpaMyU,2233
|
|
35
36
|
fast_agent/core/agent_app.py,sha256=cdzNwpb--SUNYbhkUX6RolqVnxJ5WSchxw5I4gFrvpk,16836
|
|
36
37
|
fast_agent/core/core_app.py,sha256=_8Di00HD2BzWhCAaopAUS0Hzc7pg0249QUUfPuLZ36A,4266
|
|
37
38
|
fast_agent/core/direct_decorators.py,sha256=0U4_qJl7pdom9mjQ5qwCeb0zBwc5hj-lKFF6zXs62sI,22621
|
|
38
|
-
fast_agent/core/direct_factory.py,sha256=
|
|
39
|
+
fast_agent/core/direct_factory.py,sha256=UiylXm5wkGZ9MOn1Fsj4-mB5r3UBFt4fD2Ol3R6jgBk,21340
|
|
39
40
|
fast_agent/core/error_handling.py,sha256=tZkO8LnXO-qf6jD8a12Pv5fD4NhnN1Ag5_tJ6DwbXjg,631
|
|
40
41
|
fast_agent/core/exceptions.py,sha256=ENAD_qGG67foxy6vDkIvc-lgopIUQy6O7zvNPpPXaQg,2289
|
|
41
42
|
fast_agent/core/fastagent.py,sha256=5f9jOteVVV7BzX3b_BsUSo_kdciVukVKw567uu-u3qE,30848
|
|
@@ -104,16 +105,17 @@ fast_agent/mcp/interfaces.py,sha256=xCWONGXe4uQSmmBlMZRD3mflPegTJnz2caVNihEl3ok,
|
|
|
104
105
|
fast_agent/mcp/logger_textio.py,sha256=4YLVXlXghdGm1s_qp1VoAWEX_eWufBfD2iD7l08yoak,3170
|
|
105
106
|
fast_agent/mcp/mcp_agent_client_session.py,sha256=XRCliiYMxbCbkqS2VSrw7tAtnkLIP9HSRpSWaXW02MQ,13663
|
|
106
107
|
fast_agent/mcp/mcp_aggregator.py,sha256=5J1QBGJGZMW7QlqKCWk77_THEzKwiTzKYsqaO_DrTTw,53180
|
|
107
|
-
fast_agent/mcp/mcp_connection_manager.py,sha256=
|
|
108
|
+
fast_agent/mcp/mcp_connection_manager.py,sha256=vL5JiqSf21sqz9CLX8Ljp-49lDbsRjuG1Rw3hz70fCI,19397
|
|
108
109
|
fast_agent/mcp/mcp_content.py,sha256=F9bgJ57EO9sgWg1m-eTNM6xd9js79mHKf4e9O8K8jrI,8829
|
|
109
110
|
fast_agent/mcp/mime_utils.py,sha256=D6YXNdZJ351BjacSW5o0sVF_hrWuRHD6UyWS4TDlLZI,2915
|
|
111
|
+
fast_agent/mcp/oauth_client.py,sha256=O9U0n_UA-ZNDG0IJSvK4sq_joZCrSIeUzTM1iEN8BlU,16003
|
|
110
112
|
fast_agent/mcp/prompt.py,sha256=U3jAIjGyGqCpS96zKf0idC7PI4YdFHq-3qjpCsEybxQ,5983
|
|
111
113
|
fast_agent/mcp/prompt_message_extended.py,sha256=-sw6FITvN0rTeIVWDUslNTPYyFEieToydOAf1-phQLs,4650
|
|
112
114
|
fast_agent/mcp/prompt_render.py,sha256=AqDaQqM6kqciV9X79S5rsRr3VjcQ_2JOiLaHqpRzsS4,2888
|
|
113
115
|
fast_agent/mcp/prompt_serialization.py,sha256=oivhqW3WjKYMTw2zE6_LOt8PY7K1ktZr9z9dk1XH9I0,17906
|
|
114
116
|
fast_agent/mcp/resource_utils.py,sha256=cu-l9aOy-NFs8tPihYRNjsB2QSuime8KGOGpUvihp84,6589
|
|
115
117
|
fast_agent/mcp/sampling.py,sha256=3EhEguls5GpVMr_SYrVQcYSRXlryGmqidn-zbFaeDMk,6711
|
|
116
|
-
fast_agent/mcp/ui_agent.py,sha256=
|
|
118
|
+
fast_agent/mcp/ui_agent.py,sha256=OBGEuFpOPPK7EthPRwzxmtzu1SDIeZy-vHwdRsyDNQk,1424
|
|
117
119
|
fast_agent/mcp/ui_mixin.py,sha256=iOlSNJVPwiMUun0clCiWyot59Qgy8R7ZvUgH2afRnQA,7662
|
|
118
120
|
fast_agent/mcp/helpers/__init__.py,sha256=o6-HuX6bEVFnfT_wgclFOVb1NxtOsJEOnHX8L2IqDdw,857
|
|
119
121
|
fast_agent/mcp/helpers/content_helpers.py,sha256=2os7b6pZHLE-Nu9uEgw5yafQtadH9J2jyAG_g9Wk8uA,5828
|
|
@@ -127,8 +129,8 @@ fast_agent/mcp/prompts/prompt_server.py,sha256=yc7Ui_9nR0oQimZjX19wp4AkGJIWB8pYP
|
|
|
127
129
|
fast_agent/mcp/prompts/prompt_template.py,sha256=SAklXs9wujYqqEWv5vzRI_cdjSmGnWlDmPLZ5qkXZO4,15695
|
|
128
130
|
fast_agent/mcp/server/__init__.py,sha256=AJFNzdmuHPRL3jqFhDVDJste_zYE_KJ3gGYDsbghvl0,156
|
|
129
131
|
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=
|
|
132
|
+
fast_agent/resources/examples/data-analysis/analysis-campaign.py,sha256=SnDQm_e_cm0IZEKdWizUedXxpIWWj-5K70wmcM1Tw2Y,7277
|
|
133
|
+
fast_agent/resources/examples/data-analysis/analysis.py,sha256=9ConAzZWtWRuEzmE3jCfH_AXoTyZiBVKAUkwg6PeFcA,2564
|
|
132
134
|
fast_agent/resources/examples/data-analysis/fastagent.config.yaml,sha256=ini94PHyJCfgpjcjHKMMbGuHs6LIj46F1NwY0ll5HVk,1609
|
|
133
135
|
fast_agent/resources/examples/data-analysis/mount-point/WA_Fn-UseC_-HR-Employee-Attrition.csv,sha256=pcMeOL1_r8m8MziE6xgbBrQbjl5Ijo98yycZn7O-dlk,227977
|
|
134
136
|
fast_agent/resources/examples/mcp/elicitations/elicitation_account_server.py,sha256=ZrPcj0kv75QXvtN0J_vhCmwxycnAodv35adUBZ9_8Ss,2903
|
|
@@ -136,26 +138,26 @@ fast_agent/resources/examples/mcp/elicitations/elicitation_forms_server.py,sha25
|
|
|
136
138
|
fast_agent/resources/examples/mcp/elicitations/elicitation_game_server.py,sha256=z9kHdNc6XWjAWkvet7inVBIcYxfWoxU6n9iHrsEqU7A,6206
|
|
137
139
|
fast_agent/resources/examples/mcp/elicitations/fastagent.config.yaml,sha256=HPe0cuFL4-rzS4hHNgZiLMPEv0jYXOp7iSsrUliAaqs,1080
|
|
138
140
|
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=
|
|
141
|
+
fast_agent/resources/examples/mcp/elicitations/forms_demo.py,sha256=Bs4EWWGRkRdABq-AvdV8Y5oN49c7-oDG2yC6C1W--14,4336
|
|
142
|
+
fast_agent/resources/examples/mcp/elicitations/game_character.py,sha256=Br91dWo7qXOxYmZOYgRt-IxiQ6oCHHxI2jwN32HWsAo,2359
|
|
141
143
|
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=
|
|
144
|
+
fast_agent/resources/examples/mcp/elicitations/tool_call.py,sha256=14cNyAaYfmZtOY2QC0uJzRGXxh8NNZ5-PhAXjGA-z1s,516
|
|
145
|
+
fast_agent/resources/examples/mcp/state-transfer/agent_one.py,sha256=4Rm7m59WoObfl20XxGfqzrgOlpgpqBkSscwk4n5Wv2A,441
|
|
146
|
+
fast_agent/resources/examples/mcp/state-transfer/agent_two.py,sha256=deiJmGDJHWspaVIluGraXEmWWam_Eei41jjfGq9Yzig,464
|
|
145
147
|
fast_agent/resources/examples/mcp/state-transfer/fastagent.config.yaml,sha256=A6CUcDqnFXlkhsA_Mw-I0ys2Egn7a37AfVSWl89lvxA,797
|
|
146
148
|
fast_agent/resources/examples/mcp/state-transfer/fastagent.secrets.yaml.example,sha256=pVGyO_c6j3BToNpnL0d6W1FD5iLcuCNBrqA1sYMV-cA,422
|
|
147
149
|
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=
|
|
150
|
+
fast_agent/resources/examples/researcher/researcher-eval.py,sha256=MATCUXSiYh0JXvl-PrjS7gmaFsFxDWvfsAtLf3_jht0,1819
|
|
151
|
+
fast_agent/resources/examples/researcher/researcher-imp.py,sha256=XjlhxhpUYO6t8IJp8pXXg4nL-8weqe3IqzT4PM-ZiK8,7865
|
|
152
|
+
fast_agent/resources/examples/researcher/researcher.py,sha256=u4IpLvl58gvmCYdj_0jCGDaJbqZWWtIaJnrlD9C7TzI,1319
|
|
151
153
|
fast_agent/resources/examples/tensorzero/.env.sample,sha256=khV_apbP4XprpNuIaeVicnHaVHEkwIdWGyZCvW1OLDc,35
|
|
152
154
|
fast_agent/resources/examples/tensorzero/Makefile,sha256=BOvcJvPBAJN2MDh8brLsy2leHGwuT_bBjPzakOsUSCU,427
|
|
153
155
|
fast_agent/resources/examples/tensorzero/README.md,sha256=xsA1qWjg2mI240jlbeFYWjYm_pQLsGeQiPiSlEtayeQ,2126
|
|
154
|
-
fast_agent/resources/examples/tensorzero/agent.py,sha256=
|
|
156
|
+
fast_agent/resources/examples/tensorzero/agent.py,sha256=Njxm2Nix-Vdil5XYokkBvFJdAHJOINdrI8__gPccEZw,1258
|
|
155
157
|
fast_agent/resources/examples/tensorzero/docker-compose.yml,sha256=YgmWgoHHDDTGeqRlU8Z21mLdEqo48IoKZsnlXaDZkrc,2851
|
|
156
158
|
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=
|
|
159
|
+
fast_agent/resources/examples/tensorzero/image_demo.py,sha256=ChaNOlEa3Vk5fIpalvu4mCL0PwxIOHeCorU41qDSU0o,2109
|
|
160
|
+
fast_agent/resources/examples/tensorzero/simple_agent.py,sha256=_eVVpWk-ae1qllK2WWbRi-qKo6FzIcmLb3G4CGlB91U,844
|
|
159
161
|
fast_agent/resources/examples/tensorzero/demo_images/clam.jpg,sha256=K1NWrhz5QMfgjZfDMMIVctWwbwTyJSsPHLDaUMbcn18,22231
|
|
160
162
|
fast_agent/resources/examples/tensorzero/demo_images/crab.png,sha256=W7R3bSKKDmZCjxJEmFk0pBXVhXXhfPGM1gIiVuv_eu4,58413
|
|
161
163
|
fast_agent/resources/examples/tensorzero/demo_images/shrimp.png,sha256=2r3c6yHE25MpVRDTTwxjAGs1ShJ2UI-qxJqbxa-9ew4,7806
|
|
@@ -166,19 +168,19 @@ fast_agent/resources/examples/tensorzero/mcp_server/pyproject.toml,sha256=3AppZ_
|
|
|
166
168
|
fast_agent/resources/examples/tensorzero/tensorzero_config/system_schema.json,sha256=q81vtb8eyX1gU0qOhT_BFNo7nI2Lg2o-D_Bvp8watEI,626
|
|
167
169
|
fast_agent/resources/examples/tensorzero/tensorzero_config/system_template.minijinja,sha256=_Ekz9YuE76pkmwtcMNJeDlih2U5vPRgFB5wFojAVde8,501
|
|
168
170
|
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=
|
|
171
|
+
fast_agent/resources/examples/workflows/chaining.py,sha256=4scVT0znHkFO3XACsWLFWU28guUB32ZPU3ThTktJ4mQ,875
|
|
172
|
+
fast_agent/resources/examples/workflows/evaluator.py,sha256=d0If_G14JeZwvRTugz3FPV18FWQBQmfj-cuZpxZXHzs,3097
|
|
171
173
|
fast_agent/resources/examples/workflows/fastagent.config.yaml,sha256=qaxk-p7Pl7JepdL3a7BTl0CIp4LHCXies7pFdVWS9xk,783
|
|
172
174
|
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=
|
|
175
|
+
fast_agent/resources/examples/workflows/human_input.py,sha256=gFuptgiU0mMMtv3F1XI7syCSyVV8tyi5qTOn9ziJdWI,792
|
|
176
|
+
fast_agent/resources/examples/workflows/orchestrator.py,sha256=YWSgH8cDqEuWercgof2aZLbrO0idiSL932ym3lrniNM,2526
|
|
177
|
+
fast_agent/resources/examples/workflows/parallel.py,sha256=kROiRueTm0Wql4EWVjFSyonV5A4gPepm1jllz5alias,1826
|
|
178
|
+
fast_agent/resources/examples/workflows/router.py,sha256=lxMxz6g0_XjYnwzEwKdl9l2hxRsD4PSsaIlhH5nLuQY,2075
|
|
177
179
|
fast_agent/resources/examples/workflows/short_story.md,sha256=XN9I2kzCcMmke3dE5F2lyRH5iFUZUQ8Sy-hS3rm_Wlc,1153
|
|
178
180
|
fast_agent/resources/examples/workflows/short_story.txt,sha256=X3y_1AyhLFN2AKzCKvucJtDgAFIJfnlbsbGZO5bBWu0,1187
|
|
179
181
|
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=
|
|
182
|
+
fast_agent/resources/setup/agent.py,sha256=cRQfWFkWJxF1TkWASXf8nuHbIDUgyk5o23vyoroSBOY,407
|
|
183
|
+
fast_agent/resources/setup/fastagent.config.yaml,sha256=GoXfrLXolMjl9oqam5lodzm40OmZDOkng99BSSP26pY,1446
|
|
182
184
|
fast_agent/resources/setup/fastagent.secrets.yaml.example,sha256=ht-i2_SpAyeXG2OnG_vOA1n7gRsGIInxp9g5Nio-jpI,1038
|
|
183
185
|
fast_agent/resources/setup/pyproject.toml.tmpl,sha256=b_dL9TBAzA4sPOkVZd3psMKFT-g_gef0n2NcANojEqs,343
|
|
184
186
|
fast_agent/tools/elicitation.py,sha256=8FaNvuN__LAM328VSJ5T4Bg3m8auHraqYvIYv6Eh4KU,13464
|
|
@@ -191,13 +193,13 @@ fast_agent/ui/elicitation_form.py,sha256=t3UhBG44YmxTLu1RjCnHwW36eQQaroE45CiBGJB
|
|
|
191
193
|
fast_agent/ui/elicitation_style.py,sha256=rtZiJH4CwTdkDLSzDDvThlZyIyuRX0oVNzscKiHvry8,3835
|
|
192
194
|
fast_agent/ui/enhanced_prompt.py,sha256=w99sJkdAn2WVtIT9hLumhz1DQY-H9a0Qq80JSM0jRg8,40080
|
|
193
195
|
fast_agent/ui/interactive_prompt.py,sha256=lxY26PNBNihtccO4iI7CxIag_9CxEcbajbIPdzqnEcM,43230
|
|
194
|
-
fast_agent/ui/mcp_ui_utils.py,sha256=
|
|
196
|
+
fast_agent/ui/mcp_ui_utils.py,sha256=hV7z-yHX86BgdH6CMmN5qyOUjyiegQXLJOa5n5A1vQs,8476
|
|
195
197
|
fast_agent/ui/mermaid_utils.py,sha256=MpcRyVCPMTwU1XeIxnyFg0fQLjcyXZduWRF8NhEqvXE,5332
|
|
196
198
|
fast_agent/ui/progress_display.py,sha256=hajDob65PttiJ2mPS6FsCtnmTcnyvDWGn-UqQboXqkQ,361
|
|
197
199
|
fast_agent/ui/rich_progress.py,sha256=jy6VuUOYFkWXdyvnRTSBPAmmNAP6TJDFw_lgbt_YYLo,7548
|
|
198
200
|
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.
|
|
201
|
+
fast_agent_mcp-0.3.5.dist-info/METADATA,sha256=DuTTbjbnDeBMTx7zweiM7QU1T0kfdZ_Jqpf7E99Hx4k,31696
|
|
202
|
+
fast_agent_mcp-0.3.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
203
|
+
fast_agent_mcp-0.3.5.dist-info/entry_points.txt,sha256=i6Ujja9J-hRxttOKqTYdbYP_tyaS4gLHg53vupoCSsg,199
|
|
204
|
+
fast_agent_mcp-0.3.5.dist-info/licenses/LICENSE,sha256=Gx1L3axA4PnuK4FxsbX87jQ1opoOkSFfHHSytW6wLUU,10935
|
|
205
|
+
fast_agent_mcp-0.3.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|