fast-agent-mcp 0.4.7__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.
Files changed (261) hide show
  1. fast_agent/__init__.py +183 -0
  2. fast_agent/acp/__init__.py +19 -0
  3. fast_agent/acp/acp_aware_mixin.py +304 -0
  4. fast_agent/acp/acp_context.py +437 -0
  5. fast_agent/acp/content_conversion.py +136 -0
  6. fast_agent/acp/filesystem_runtime.py +427 -0
  7. fast_agent/acp/permission_store.py +269 -0
  8. fast_agent/acp/server/__init__.py +5 -0
  9. fast_agent/acp/server/agent_acp_server.py +1472 -0
  10. fast_agent/acp/slash_commands.py +1050 -0
  11. fast_agent/acp/terminal_runtime.py +408 -0
  12. fast_agent/acp/tool_permission_adapter.py +125 -0
  13. fast_agent/acp/tool_permissions.py +474 -0
  14. fast_agent/acp/tool_progress.py +814 -0
  15. fast_agent/agents/__init__.py +85 -0
  16. fast_agent/agents/agent_types.py +64 -0
  17. fast_agent/agents/llm_agent.py +350 -0
  18. fast_agent/agents/llm_decorator.py +1139 -0
  19. fast_agent/agents/mcp_agent.py +1337 -0
  20. fast_agent/agents/tool_agent.py +271 -0
  21. fast_agent/agents/workflow/agents_as_tools_agent.py +849 -0
  22. fast_agent/agents/workflow/chain_agent.py +212 -0
  23. fast_agent/agents/workflow/evaluator_optimizer.py +380 -0
  24. fast_agent/agents/workflow/iterative_planner.py +652 -0
  25. fast_agent/agents/workflow/maker_agent.py +379 -0
  26. fast_agent/agents/workflow/orchestrator_models.py +218 -0
  27. fast_agent/agents/workflow/orchestrator_prompts.py +248 -0
  28. fast_agent/agents/workflow/parallel_agent.py +250 -0
  29. fast_agent/agents/workflow/router_agent.py +353 -0
  30. fast_agent/cli/__init__.py +0 -0
  31. fast_agent/cli/__main__.py +73 -0
  32. fast_agent/cli/commands/acp.py +159 -0
  33. fast_agent/cli/commands/auth.py +404 -0
  34. fast_agent/cli/commands/check_config.py +783 -0
  35. fast_agent/cli/commands/go.py +514 -0
  36. fast_agent/cli/commands/quickstart.py +557 -0
  37. fast_agent/cli/commands/serve.py +143 -0
  38. fast_agent/cli/commands/server_helpers.py +114 -0
  39. fast_agent/cli/commands/setup.py +174 -0
  40. fast_agent/cli/commands/url_parser.py +190 -0
  41. fast_agent/cli/constants.py +40 -0
  42. fast_agent/cli/main.py +115 -0
  43. fast_agent/cli/terminal.py +24 -0
  44. fast_agent/config.py +798 -0
  45. fast_agent/constants.py +41 -0
  46. fast_agent/context.py +279 -0
  47. fast_agent/context_dependent.py +50 -0
  48. fast_agent/core/__init__.py +92 -0
  49. fast_agent/core/agent_app.py +448 -0
  50. fast_agent/core/core_app.py +137 -0
  51. fast_agent/core/direct_decorators.py +784 -0
  52. fast_agent/core/direct_factory.py +620 -0
  53. fast_agent/core/error_handling.py +27 -0
  54. fast_agent/core/exceptions.py +90 -0
  55. fast_agent/core/executor/__init__.py +0 -0
  56. fast_agent/core/executor/executor.py +280 -0
  57. fast_agent/core/executor/task_registry.py +32 -0
  58. fast_agent/core/executor/workflow_signal.py +324 -0
  59. fast_agent/core/fastagent.py +1186 -0
  60. fast_agent/core/logging/__init__.py +5 -0
  61. fast_agent/core/logging/events.py +138 -0
  62. fast_agent/core/logging/json_serializer.py +164 -0
  63. fast_agent/core/logging/listeners.py +309 -0
  64. fast_agent/core/logging/logger.py +278 -0
  65. fast_agent/core/logging/transport.py +481 -0
  66. fast_agent/core/prompt.py +9 -0
  67. fast_agent/core/prompt_templates.py +183 -0
  68. fast_agent/core/validation.py +326 -0
  69. fast_agent/event_progress.py +62 -0
  70. fast_agent/history/history_exporter.py +49 -0
  71. fast_agent/human_input/__init__.py +47 -0
  72. fast_agent/human_input/elicitation_handler.py +123 -0
  73. fast_agent/human_input/elicitation_state.py +33 -0
  74. fast_agent/human_input/form_elements.py +59 -0
  75. fast_agent/human_input/form_fields.py +256 -0
  76. fast_agent/human_input/simple_form.py +113 -0
  77. fast_agent/human_input/types.py +40 -0
  78. fast_agent/interfaces.py +310 -0
  79. fast_agent/llm/__init__.py +9 -0
  80. fast_agent/llm/cancellation.py +22 -0
  81. fast_agent/llm/fastagent_llm.py +931 -0
  82. fast_agent/llm/internal/passthrough.py +161 -0
  83. fast_agent/llm/internal/playback.py +129 -0
  84. fast_agent/llm/internal/silent.py +41 -0
  85. fast_agent/llm/internal/slow.py +38 -0
  86. fast_agent/llm/memory.py +275 -0
  87. fast_agent/llm/model_database.py +490 -0
  88. fast_agent/llm/model_factory.py +388 -0
  89. fast_agent/llm/model_info.py +102 -0
  90. fast_agent/llm/prompt_utils.py +155 -0
  91. fast_agent/llm/provider/anthropic/anthropic_utils.py +84 -0
  92. fast_agent/llm/provider/anthropic/cache_planner.py +56 -0
  93. fast_agent/llm/provider/anthropic/llm_anthropic.py +796 -0
  94. fast_agent/llm/provider/anthropic/multipart_converter_anthropic.py +462 -0
  95. fast_agent/llm/provider/bedrock/bedrock_utils.py +218 -0
  96. fast_agent/llm/provider/bedrock/llm_bedrock.py +2207 -0
  97. fast_agent/llm/provider/bedrock/multipart_converter_bedrock.py +84 -0
  98. fast_agent/llm/provider/google/google_converter.py +466 -0
  99. fast_agent/llm/provider/google/llm_google_native.py +681 -0
  100. fast_agent/llm/provider/openai/llm_aliyun.py +31 -0
  101. fast_agent/llm/provider/openai/llm_azure.py +143 -0
  102. fast_agent/llm/provider/openai/llm_deepseek.py +76 -0
  103. fast_agent/llm/provider/openai/llm_generic.py +35 -0
  104. fast_agent/llm/provider/openai/llm_google_oai.py +32 -0
  105. fast_agent/llm/provider/openai/llm_groq.py +42 -0
  106. fast_agent/llm/provider/openai/llm_huggingface.py +85 -0
  107. fast_agent/llm/provider/openai/llm_openai.py +1195 -0
  108. fast_agent/llm/provider/openai/llm_openai_compatible.py +138 -0
  109. fast_agent/llm/provider/openai/llm_openrouter.py +45 -0
  110. fast_agent/llm/provider/openai/llm_tensorzero_openai.py +128 -0
  111. fast_agent/llm/provider/openai/llm_xai.py +38 -0
  112. fast_agent/llm/provider/openai/multipart_converter_openai.py +561 -0
  113. fast_agent/llm/provider/openai/openai_multipart.py +169 -0
  114. fast_agent/llm/provider/openai/openai_utils.py +67 -0
  115. fast_agent/llm/provider/openai/responses.py +133 -0
  116. fast_agent/llm/provider_key_manager.py +139 -0
  117. fast_agent/llm/provider_types.py +34 -0
  118. fast_agent/llm/request_params.py +61 -0
  119. fast_agent/llm/sampling_converter.py +98 -0
  120. fast_agent/llm/stream_types.py +9 -0
  121. fast_agent/llm/usage_tracking.py +445 -0
  122. fast_agent/mcp/__init__.py +56 -0
  123. fast_agent/mcp/common.py +26 -0
  124. fast_agent/mcp/elicitation_factory.py +84 -0
  125. fast_agent/mcp/elicitation_handlers.py +164 -0
  126. fast_agent/mcp/gen_client.py +83 -0
  127. fast_agent/mcp/helpers/__init__.py +36 -0
  128. fast_agent/mcp/helpers/content_helpers.py +352 -0
  129. fast_agent/mcp/helpers/server_config_helpers.py +25 -0
  130. fast_agent/mcp/hf_auth.py +147 -0
  131. fast_agent/mcp/interfaces.py +92 -0
  132. fast_agent/mcp/logger_textio.py +108 -0
  133. fast_agent/mcp/mcp_agent_client_session.py +411 -0
  134. fast_agent/mcp/mcp_aggregator.py +2175 -0
  135. fast_agent/mcp/mcp_connection_manager.py +723 -0
  136. fast_agent/mcp/mcp_content.py +262 -0
  137. fast_agent/mcp/mime_utils.py +108 -0
  138. fast_agent/mcp/oauth_client.py +509 -0
  139. fast_agent/mcp/prompt.py +159 -0
  140. fast_agent/mcp/prompt_message_extended.py +155 -0
  141. fast_agent/mcp/prompt_render.py +84 -0
  142. fast_agent/mcp/prompt_serialization.py +580 -0
  143. fast_agent/mcp/prompts/__init__.py +0 -0
  144. fast_agent/mcp/prompts/__main__.py +7 -0
  145. fast_agent/mcp/prompts/prompt_constants.py +18 -0
  146. fast_agent/mcp/prompts/prompt_helpers.py +238 -0
  147. fast_agent/mcp/prompts/prompt_load.py +186 -0
  148. fast_agent/mcp/prompts/prompt_server.py +552 -0
  149. fast_agent/mcp/prompts/prompt_template.py +438 -0
  150. fast_agent/mcp/resource_utils.py +215 -0
  151. fast_agent/mcp/sampling.py +200 -0
  152. fast_agent/mcp/server/__init__.py +4 -0
  153. fast_agent/mcp/server/agent_server.py +613 -0
  154. fast_agent/mcp/skybridge.py +44 -0
  155. fast_agent/mcp/sse_tracking.py +287 -0
  156. fast_agent/mcp/stdio_tracking_simple.py +59 -0
  157. fast_agent/mcp/streamable_http_tracking.py +309 -0
  158. fast_agent/mcp/tool_execution_handler.py +137 -0
  159. fast_agent/mcp/tool_permission_handler.py +88 -0
  160. fast_agent/mcp/transport_tracking.py +634 -0
  161. fast_agent/mcp/types.py +24 -0
  162. fast_agent/mcp/ui_agent.py +48 -0
  163. fast_agent/mcp/ui_mixin.py +209 -0
  164. fast_agent/mcp_server_registry.py +89 -0
  165. fast_agent/py.typed +0 -0
  166. fast_agent/resources/examples/data-analysis/analysis-campaign.py +189 -0
  167. fast_agent/resources/examples/data-analysis/analysis.py +68 -0
  168. fast_agent/resources/examples/data-analysis/fastagent.config.yaml +41 -0
  169. fast_agent/resources/examples/data-analysis/mount-point/WA_Fn-UseC_-HR-Employee-Attrition.csv +1471 -0
  170. fast_agent/resources/examples/mcp/elicitations/elicitation_account_server.py +88 -0
  171. fast_agent/resources/examples/mcp/elicitations/elicitation_forms_server.py +297 -0
  172. fast_agent/resources/examples/mcp/elicitations/elicitation_game_server.py +164 -0
  173. fast_agent/resources/examples/mcp/elicitations/fastagent.config.yaml +35 -0
  174. fast_agent/resources/examples/mcp/elicitations/fastagent.secrets.yaml.example +17 -0
  175. fast_agent/resources/examples/mcp/elicitations/forms_demo.py +107 -0
  176. fast_agent/resources/examples/mcp/elicitations/game_character.py +65 -0
  177. fast_agent/resources/examples/mcp/elicitations/game_character_handler.py +256 -0
  178. fast_agent/resources/examples/mcp/elicitations/tool_call.py +21 -0
  179. fast_agent/resources/examples/mcp/state-transfer/agent_one.py +18 -0
  180. fast_agent/resources/examples/mcp/state-transfer/agent_two.py +18 -0
  181. fast_agent/resources/examples/mcp/state-transfer/fastagent.config.yaml +27 -0
  182. fast_agent/resources/examples/mcp/state-transfer/fastagent.secrets.yaml.example +15 -0
  183. fast_agent/resources/examples/researcher/fastagent.config.yaml +61 -0
  184. fast_agent/resources/examples/researcher/researcher-eval.py +53 -0
  185. fast_agent/resources/examples/researcher/researcher-imp.py +189 -0
  186. fast_agent/resources/examples/researcher/researcher.py +36 -0
  187. fast_agent/resources/examples/tensorzero/.env.sample +2 -0
  188. fast_agent/resources/examples/tensorzero/Makefile +31 -0
  189. fast_agent/resources/examples/tensorzero/README.md +56 -0
  190. fast_agent/resources/examples/tensorzero/agent.py +35 -0
  191. fast_agent/resources/examples/tensorzero/demo_images/clam.jpg +0 -0
  192. fast_agent/resources/examples/tensorzero/demo_images/crab.png +0 -0
  193. fast_agent/resources/examples/tensorzero/demo_images/shrimp.png +0 -0
  194. fast_agent/resources/examples/tensorzero/docker-compose.yml +105 -0
  195. fast_agent/resources/examples/tensorzero/fastagent.config.yaml +19 -0
  196. fast_agent/resources/examples/tensorzero/image_demo.py +67 -0
  197. fast_agent/resources/examples/tensorzero/mcp_server/Dockerfile +25 -0
  198. fast_agent/resources/examples/tensorzero/mcp_server/entrypoint.sh +35 -0
  199. fast_agent/resources/examples/tensorzero/mcp_server/mcp_server.py +31 -0
  200. fast_agent/resources/examples/tensorzero/mcp_server/pyproject.toml +11 -0
  201. fast_agent/resources/examples/tensorzero/simple_agent.py +25 -0
  202. fast_agent/resources/examples/tensorzero/tensorzero_config/system_schema.json +29 -0
  203. fast_agent/resources/examples/tensorzero/tensorzero_config/system_template.minijinja +11 -0
  204. fast_agent/resources/examples/tensorzero/tensorzero_config/tensorzero.toml +35 -0
  205. fast_agent/resources/examples/workflows/agents_as_tools_extended.py +73 -0
  206. fast_agent/resources/examples/workflows/agents_as_tools_simple.py +50 -0
  207. fast_agent/resources/examples/workflows/chaining.py +37 -0
  208. fast_agent/resources/examples/workflows/evaluator.py +77 -0
  209. fast_agent/resources/examples/workflows/fastagent.config.yaml +26 -0
  210. fast_agent/resources/examples/workflows/graded_report.md +89 -0
  211. fast_agent/resources/examples/workflows/human_input.py +28 -0
  212. fast_agent/resources/examples/workflows/maker.py +156 -0
  213. fast_agent/resources/examples/workflows/orchestrator.py +70 -0
  214. fast_agent/resources/examples/workflows/parallel.py +56 -0
  215. fast_agent/resources/examples/workflows/router.py +69 -0
  216. fast_agent/resources/examples/workflows/short_story.md +13 -0
  217. fast_agent/resources/examples/workflows/short_story.txt +19 -0
  218. fast_agent/resources/setup/.gitignore +30 -0
  219. fast_agent/resources/setup/agent.py +28 -0
  220. fast_agent/resources/setup/fastagent.config.yaml +65 -0
  221. fast_agent/resources/setup/fastagent.secrets.yaml.example +38 -0
  222. fast_agent/resources/setup/pyproject.toml.tmpl +23 -0
  223. fast_agent/skills/__init__.py +9 -0
  224. fast_agent/skills/registry.py +235 -0
  225. fast_agent/tools/elicitation.py +369 -0
  226. fast_agent/tools/shell_runtime.py +402 -0
  227. fast_agent/types/__init__.py +59 -0
  228. fast_agent/types/conversation_summary.py +294 -0
  229. fast_agent/types/llm_stop_reason.py +78 -0
  230. fast_agent/types/message_search.py +249 -0
  231. fast_agent/ui/__init__.py +38 -0
  232. fast_agent/ui/console.py +59 -0
  233. fast_agent/ui/console_display.py +1080 -0
  234. fast_agent/ui/elicitation_form.py +946 -0
  235. fast_agent/ui/elicitation_style.py +59 -0
  236. fast_agent/ui/enhanced_prompt.py +1400 -0
  237. fast_agent/ui/history_display.py +734 -0
  238. fast_agent/ui/interactive_prompt.py +1199 -0
  239. fast_agent/ui/markdown_helpers.py +104 -0
  240. fast_agent/ui/markdown_truncator.py +1004 -0
  241. fast_agent/ui/mcp_display.py +857 -0
  242. fast_agent/ui/mcp_ui_utils.py +235 -0
  243. fast_agent/ui/mermaid_utils.py +169 -0
  244. fast_agent/ui/message_primitives.py +50 -0
  245. fast_agent/ui/notification_tracker.py +205 -0
  246. fast_agent/ui/plain_text_truncator.py +68 -0
  247. fast_agent/ui/progress_display.py +10 -0
  248. fast_agent/ui/rich_progress.py +195 -0
  249. fast_agent/ui/streaming.py +774 -0
  250. fast_agent/ui/streaming_buffer.py +449 -0
  251. fast_agent/ui/tool_display.py +422 -0
  252. fast_agent/ui/usage_display.py +204 -0
  253. fast_agent/utils/__init__.py +5 -0
  254. fast_agent/utils/reasoning_stream_parser.py +77 -0
  255. fast_agent/utils/time.py +22 -0
  256. fast_agent/workflow_telemetry.py +261 -0
  257. fast_agent_mcp-0.4.7.dist-info/METADATA +788 -0
  258. fast_agent_mcp-0.4.7.dist-info/RECORD +261 -0
  259. fast_agent_mcp-0.4.7.dist-info/WHEEL +4 -0
  260. fast_agent_mcp-0.4.7.dist-info/entry_points.txt +7 -0
  261. fast_agent_mcp-0.4.7.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,261 @@
1
+ fast_agent/__init__.py,sha256=oXbXO5peTGB4Y-Xwx3xkaPooVSvCg2Zflfo5EWR9Z0o,5133
2
+ fast_agent/config.py,sha256=JWWUTaUzdSTLImXLmVHnANKX90icNZAIK9vtG5AIU3Q,27995
3
+ fast_agent/constants.py,sha256=rMQuwlFuwb_EaB29R4uuppHTqvRrzSqSKyK187WsMNU,1419
4
+ fast_agent/context.py,sha256=wsfHYFva3eXMMZ-vWEwbwSolY4DFayfX4BzPii2Y_DU,9386
5
+ fast_agent/context_dependent.py,sha256=F9_GaHanOWPfcojzbPNiLvJD9wROfo_P6JByTmQCJ7U,1576
6
+ fast_agent/event_progress.py,sha256=cB4br5yrQgoCuzktGcFVc9JTpONw1BItNCaLMkd3JSY,2129
7
+ fast_agent/interfaces.py,sha256=BoM8EtReliMuFkpx29MOQih1fNHUfqPInafoND9g5ac,8900
8
+ fast_agent/mcp_server_registry.py,sha256=3Mk-72BxgjqpRAwc5fqrUiqh9ABshvxtza59waI_3G0,2611
9
+ fast_agent/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
+ fast_agent/workflow_telemetry.py,sha256=drXxmG7PVgP-6krOUv3LdkKjbWgHIr85TFAHu8_PFRU,7518
11
+ fast_agent/acp/__init__.py,sha256=zmL78i0NfQH2iR-lOXM8lbLxH2qdVHq365YRwzxyXao,630
12
+ fast_agent/acp/acp_aware_mixin.py,sha256=ypul0k30VGEm6Taa-vxBtDnrp1_cAesjEJEb-l63qmQ,9139
13
+ fast_agent/acp/acp_context.py,sha256=tbXGjjq0m-9MRpt_WiVYiJF-nYlU5j0LSZEI0UqXTdQ,15185
14
+ fast_agent/acp/content_conversion.py,sha256=FwfQG6yYVZ8qKM8fIZokYhcG9VxpjHlCjKVMveYM710,4403
15
+ fast_agent/acp/filesystem_runtime.py,sha256=GrOFWeY2ZIBNNnJOSNr6wnPVgQzMBcFdFpYJQPsfnVg,15664
16
+ fast_agent/acp/permission_store.py,sha256=BhWjFaV8eM-DIDAn-3ge_v4EdlJTQkQZ8bnGKusZQgo,9115
17
+ fast_agent/acp/slash_commands.py,sha256=5xqh-ekyThEzWcbXacy-pZv3_jjEQELa1Ja82Zln82s,38880
18
+ fast_agent/acp/terminal_runtime.py,sha256=XQOInBMy7Ey4IpIcaITrI9hkWH0jr-gxRTQFCQaxPyk,16271
19
+ fast_agent/acp/tool_permission_adapter.py,sha256=Fg9dkiq4yNCPAq7v8OUSgoWsls7XOktu2WzzzIr630o,4452
20
+ fast_agent/acp/tool_permissions.py,sha256=Q72cn374E9349zjewtwkFRhdonJd9Ibz146xuuzg2Tc,16808
21
+ fast_agent/acp/tool_progress.py,sha256=KV2L4CymgxekklUttwUXDoJ8mmX6pjbkyxCKkQ0tWNA,32869
22
+ fast_agent/acp/server/__init__.py,sha256=VFNkYZU2g7CcYENQ36FU6_rlqQ22jzPX5VBjkF54UoQ,130
23
+ fast_agent/acp/server/agent_acp_server.py,sha256=eLE2gphMkrNhgnBgtbaWYVSf6ANw1p0aekqtT9bhurk,62867
24
+ fast_agent/agents/__init__.py,sha256=WfgtR9MgmJUJI7rb-CUH_10s7308LjxYIYzJRIBZ_9Y,2644
25
+ fast_agent/agents/agent_types.py,sha256=pGOcUVnJyQSz6CNwzFiCDc-Yu72RX4Bct6ls7Q7W9fY,2254
26
+ fast_agent/agents/llm_agent.py,sha256=IxfJfIFocTgm3MbzcJ2DgBjP3uiYxN6qFj8MtqAZ_j0,13480
27
+ fast_agent/agents/llm_decorator.py,sha256=vnxe2KXzfXqtWURnkLTsRhSHkWxz45QAwKsv03gVKOI,41201
28
+ fast_agent/agents/mcp_agent.py,sha256=SG9e_cJ1iQNzwXlyJExrhkHiM6iitCGNShkn5vX7Ma8,52937
29
+ fast_agent/agents/tool_agent.py,sha256=EWd7hZZn1uqJEG_au4VdLPOM7ZaQyXfFGI29v-YG5BM,10420
30
+ fast_agent/agents/workflow/agents_as_tools_agent.py,sha256=KKL9RxjdeBff3HDzonoHyo4YSsESfNLNbXvHBzIySmw,35530
31
+ fast_agent/agents/workflow/chain_agent.py,sha256=KaGID7rlY4z8U9XZMr6zkvS01oGgE0c4PgjEYfAZuT0,8359
32
+ fast_agent/agents/workflow/evaluator_optimizer.py,sha256=m0kU_QiKG39ttqxHiJlOLVkAnSTANk3yUKjQMe93aSI,14407
33
+ fast_agent/agents/workflow/iterative_planner.py,sha256=jPOOzQzpTS-FGtXMvB0YDkDfkXJv2WPrBqXrXh2Kf24,23209
34
+ fast_agent/agents/workflow/maker_agent.py,sha256=tYgA5nNGtRDBphNLHshtEnPs8SddbG2Vfdq7loxLWLM,13895
35
+ fast_agent/agents/workflow/orchestrator_models.py,sha256=PxDGEN3RmX0uELaSaO4J22041Cwy2GGiuuiq9zkibdc,7192
36
+ fast_agent/agents/workflow/orchestrator_prompts.py,sha256=EXKEI174sshkZyPPEnWbwwNafzSPuA39MXL7iqG9cWc,9106
37
+ fast_agent/agents/workflow/parallel_agent.py,sha256=Fm2QsJuPHK1iK6Dhk-X_xxksh6vL98dMMN_FhGSlJoY,9460
38
+ fast_agent/agents/workflow/router_agent.py,sha256=ANTMpr06A19esUUf0jOFzyMHQM9NkucqVXIOss87yx0,12759
39
+ fast_agent/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ fast_agent/cli/__main__.py,sha256=OWuKPFEeZRco6j5VA3IvtwTvZ351pDGxuO6rAiOTFNI,2588
41
+ fast_agent/cli/constants.py,sha256=xLxQKuQzbv3Qkd6CB5wNwyDqyHBvdx97PZfsoK7-b4o,672
42
+ fast_agent/cli/main.py,sha256=9If2QHGWaTg8V-_kfE0JYvP0Sb3W0wibq5w8kbBX5kA,4735
43
+ fast_agent/cli/terminal.py,sha256=tDN1fJ91Nc_wZJTNafkQuD7Z7gFscvo1PHh-t7Wl-5s,1066
44
+ fast_agent/cli/commands/acp.py,sha256=cQdUJBfSbRlUOIQ7mkNgD6QAfVbvSbvRlM4m0qPLk4s,5196
45
+ fast_agent/cli/commands/auth.py,sha256=s6K12oI7T3hXKfhiD8X9w7UyF5MAtgScapQKmHdAFNQ,14995
46
+ fast_agent/cli/commands/check_config.py,sha256=81hk3fuMd4FeQyx302QDXTs5iVV_MWqI6rBFt1vbe0o,32557
47
+ fast_agent/cli/commands/go.py,sha256=I2TYgqryDtypVsWEnAK8JXx8FFL_dXOC1HoR9Xu3vFI,19363
48
+ fast_agent/cli/commands/quickstart.py,sha256=Yp9CZXJm2JgA_qJymwuf9YgMm6Svj0RAxkJfpRIAclc,22108
49
+ fast_agent/cli/commands/serve.py,sha256=gSFPopNBioGWZllqhVLyR9FsXB6JhG9atVdLsC_c6F0,4690
50
+ fast_agent/cli/commands/server_helpers.py,sha256=KE1GxIPf_OwW-setERtyYfu4voJqgJwbn1WiWVjagTU,4067
51
+ fast_agent/cli/commands/setup.py,sha256=n5hVjXkKTmuiW8-0ezItVcMHJ92W6NlE2JOGCYiKw0A,6388
52
+ fast_agent/cli/commands/url_parser.py,sha256=bkcN-7LzqDOm0Pq17C_UZuuCamVjSDjbmthCc0ZCCp0,5924
53
+ fast_agent/core/__init__.py,sha256=n2ly7SBtFko9H2DPVh8cSqfw9chtiUaokxLmiDpaMyU,2233
54
+ fast_agent/core/agent_app.py,sha256=_l4OmaKIL-AliJMWowoC-vY_1LNVXiLwkgViRKSeF4c,17435
55
+ fast_agent/core/core_app.py,sha256=Fi_4HWCQ6T3OBJU6uAHJIDIgU16cNC6aDfaQYJ6XreY,4312
56
+ fast_agent/core/direct_decorators.py,sha256=6PFOtc1Zg2htaVA1LsP9_58fo-iEhVLl_hIo8ZNeyGI,26994
57
+ fast_agent/core/direct_factory.py,sha256=0IrqZKDDXkxz_QBQCEZ9VfXucJIGC20sCyhqmLpKWVk,23366
58
+ fast_agent/core/error_handling.py,sha256=zZCTbDbpTtPaIewpbDhEr5LY8DikZv4xiIRuoErKJrU,843
59
+ fast_agent/core/exceptions.py,sha256=uoln3zv6nTkQN4sWAgh1nLIj9ahfPGbnOfxY_SsTJOA,3142
60
+ fast_agent/core/fastagent.py,sha256=NZNN2s_EnTwVchCSlE3ljuxhO8n2GKpR3QLe3yax4JQ,49540
61
+ fast_agent/core/prompt.py,sha256=qNUFlK3KtU7leYysYUglzBYQnEYiXu__iR_T8189zc0,203
62
+ fast_agent/core/prompt_templates.py,sha256=CE1SMLHGl8NB0F-RwNroIZpzUy0aBnbfOBUIeE0r9_8,6238
63
+ fast_agent/core/validation.py,sha256=j7P6E-wCa-wZqj5xUMaiWjozyro7KEwglFKYr6cyVzc,12050
64
+ fast_agent/core/executor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ fast_agent/core/executor/executor.py,sha256=-Cfmj-lj1mXsTdWSjEy30FwhbPqDCxQgWopcsRIPDHI,9378
66
+ fast_agent/core/executor/task_registry.py,sha256=wOe6OqihTCyn02qY4byWsATX8MPuNYXKul8Tuf4e9ks,1230
67
+ fast_agent/core/executor/workflow_signal.py,sha256=XYlLx88eMr7VavzLZsDaMmIinDRA_UUT_vDZhIR_f6Y,11492
68
+ fast_agent/core/logging/__init__.py,sha256=dFW2bbTtz45zebUuQs7RVi7mg1RJm4DHH6TGfBMhW14,167
69
+ fast_agent/core/logging/events.py,sha256=_2PJGb8OxlgxybhbyeT2Ah9bscRIOaCnRELQv0FCbaM,4189
70
+ fast_agent/core/logging/json_serializer.py,sha256=OK8WbczC-OScDIM4ILpfzfnEJ2EdOX2-Pi0fq6ehuns,5786
71
+ fast_agent/core/logging/listeners.py,sha256=jdQBklJ6oazd8jj2hLgWEbJb5rDALCIjZCN9F9iMiPM,10020
72
+ fast_agent/core/logging/logger.py,sha256=6C4UQqJp_0gC7TrSuFHCLpVi775yjSINxVx6b6y_u4E,7979
73
+ fast_agent/core/logging/transport.py,sha256=OaWYi13W3elB-kRdKok6-9u_IdazCPjzxPXFyvPAIRs,16982
74
+ fast_agent/history/history_exporter.py,sha256=M5HcU82xQ3scMJLjIUOVv1S2dT4-E1l3ktYnMmNq2rM,1562
75
+ fast_agent/human_input/__init__.py,sha256=4Jr_0JLJwdQ3iEUNd6Api9InldtnRMDv_WeZq_WEHpA,935
76
+ fast_agent/human_input/elicitation_handler.py,sha256=a8WkfxwbmopH8Gi3adqHbUxvCEux74lLGbh2I3bt2tw,4757
77
+ fast_agent/human_input/elicitation_state.py,sha256=3pSDBMFrzWwi-du7ofxlkPRdpLfAZFPv1eBRCPdtz5Q,1129
78
+ fast_agent/human_input/form_elements.py,sha256=C-WgDulRYRDYPcsthf8PQcWUGI8kI3NTlUPIOpe4v1I,1990
79
+ fast_agent/human_input/form_fields.py,sha256=M5mXAoY9nHzNDzRapq0OPDG5uELxEmMgJ5zmQFGQ2Sc,7602
80
+ fast_agent/human_input/simple_form.py,sha256=btHxpxrUJi-ebUc2pCOzD01CbddoM0cDUzl_h8-htIc,3480
81
+ fast_agent/human_input/types.py,sha256=3Zz89yIt8SuDAVAaRy-r4Vw0-M6AWahwbqQ0yOcoe20,954
82
+ fast_agent/llm/__init__.py,sha256=MCsrkfnTQXYvn0SofJ-JFmp1l1jX_eidgvegbWbgpsw,184
83
+ fast_agent/llm/cancellation.py,sha256=OXrVNR5twLmQ54w4s-KOSt_BdNusNzYIggmo5vCHhbY,706
84
+ fast_agent/llm/fastagent_llm.py,sha256=TyDXPBYMmD_zx5k8oVpYZaGlpAL1tzP_s4cJZLRcads,34437
85
+ fast_agent/llm/memory.py,sha256=pnCoFk8Gu525kmzfNUH8NA69T5p_dKFPl2S2azeZiTQ,10348
86
+ fast_agent/llm/model_database.py,sha256=S8TsnLktY0E7RlYZSKx6ci28-opWBaCANagf4nmVXgw,18167
87
+ fast_agent/llm/model_factory.py,sha256=GFsgFmM4nrnXgfXcgUyYjRsgG7Xy_3Osar5WFlhdDPA,15660
88
+ fast_agent/llm/model_info.py,sha256=To6Jbig8R3fdDei88uyNV3IJu51EecCLkbN1-MS6Qsc,3448
89
+ fast_agent/llm/prompt_utils.py,sha256=pRwTMDsRrJQfH2YG6sw_UBf6419eRmBmRd6BOXlEm50,4853
90
+ fast_agent/llm/provider_key_manager.py,sha256=VK9BffBKE-Kz4QaOXQTwY05dfQ4mMnnFOXsXDawws1E,5118
91
+ fast_agent/llm/provider_types.py,sha256=5ZepUXLPN45r9G3tPaIZO_cHoYC9_6L7tLkxCZULcn0,1186
92
+ fast_agent/llm/request_params.py,sha256=jJWdP1OmRO9-xbWQfJPVecIoFwrxi3CZRqtdO309Ylc,1800
93
+ fast_agent/llm/sampling_converter.py,sha256=CjW9cVzkpk0YKA-VV_qGJvubFs3CCIK95v2yqGLkC3U,3065
94
+ fast_agent/llm/stream_types.py,sha256=4CxlKmwFwYfyDg3n9fLRx6oD-3Kz344Ome-cVismrsU,179
95
+ fast_agent/llm/usage_tracking.py,sha256=-4Z2zuSRGw87BqJpNRHpC1-r64Ik_v4WCxkR7Cm2vME,16760
96
+ fast_agent/llm/internal/passthrough.py,sha256=ubpp-oEwA56fAtd40bHEYyIQaFjTbIpKGgjQZTWZBig,6057
97
+ fast_agent/llm/internal/playback.py,sha256=iPXv7AJrgMW8vGhnDyofL9vfb-5jl-BLM1IR6pm6bCQ,5022
98
+ fast_agent/llm/internal/silent.py,sha256=TVhjp0sEcPpR35n_QjYrMu0CKVX2humAt1GBR6y_itE,1563
99
+ fast_agent/llm/internal/slow.py,sha256=ySAmyMfaEpcHc3rLSUOW7Ql9KtI5Wt8hGEoYQmCEolo,1304
100
+ fast_agent/llm/provider/anthropic/anthropic_utils.py,sha256=zkeMpAlV9YW9pP1FObkyqR8wg8e-Xir9SCwsom94zao,3246
101
+ fast_agent/llm/provider/anthropic/cache_planner.py,sha256=Ph5XcoIoi9wQVfpPZ9VU3BcvbxebNSoaIQaDPnLQy1E,1977
102
+ fast_agent/llm/provider/anthropic/llm_anthropic.py,sha256=Af2ujWot9zd5k_XGx6vb80ADC-XogfhrwiWtfsZLBK0,33275
103
+ fast_agent/llm/provider/anthropic/multipart_converter_anthropic.py,sha256=oJ9jKprn0FPPrEiowZD25jw0mW5uOQFt89tDX9hn4wc,17074
104
+ fast_agent/llm/provider/bedrock/bedrock_utils.py,sha256=8CPPl7ax0CKIPZzUMPJCuiD9a-gBwbk-hHAFZyMBg_M,7669
105
+ fast_agent/llm/provider/bedrock/llm_bedrock.py,sha256=1Wx6Uws0sIf7T4MKXZEuN_jSFcrIKjz1aH_loAfKLPQ,99781
106
+ fast_agent/llm/provider/bedrock/multipart_converter_bedrock.py,sha256=0Ivrc3L4LyhhWU2XXqoYCJ06xTapo1DnQyi-0zIpxYQ,3487
107
+ fast_agent/llm/provider/google/google_converter.py,sha256=IyFMnkJR_G-CAs5GPKHfSfh99m40v2m5yL9mKvVaUn0,21592
108
+ fast_agent/llm/provider/google/llm_google_native.py,sha256=Hl09drZp97QSEDDmohO5mPWI5huhcOTGb0eZ0MqjYuE,29287
109
+ fast_agent/llm/provider/openai/llm_aliyun.py,sha256=ti7VHTpwl0AG3ytwBERpDzVtacvCfamKnl2bAnTE96s,1213
110
+ fast_agent/llm/provider/openai/llm_azure.py,sha256=dePpuOf7yD4-zQc1PEHm4yaVznrZe9RaIz7nxsbZhlU,6061
111
+ fast_agent/llm/provider/openai/llm_deepseek.py,sha256=Q_65CxDsBpKBoP0wPUkdihGcb1NJeYddox_ZWvw6SRc,2997
112
+ fast_agent/llm/provider/openai/llm_generic.py,sha256=O_mmu3o9LeAZ6Kp405I-GfwrS8AuVkyX3tT6aCDCfLY,1168
113
+ fast_agent/llm/provider/openai/llm_google_oai.py,sha256=YOw6qP95Ng-OgLPW2dGEesuKryefm4JRIRBxGmLRqiM,1126
114
+ fast_agent/llm/provider/openai/llm_groq.py,sha256=FyB6Rpu_jLjYe1h7GHPI431FW4Bv0FqE7FVggeEToNU,1676
115
+ fast_agent/llm/provider/openai/llm_huggingface.py,sha256=rrdtBclIdOaVpKHjKCBJqdr9hqoEk_x7ythL52G4rbs,3448
116
+ fast_agent/llm/provider/openai/llm_openai.py,sha256=hlxxG28kqcf9L-8KOt6tU5K22bcm3nRGmEXXpeveXfw,49165
117
+ fast_agent/llm/provider/openai/llm_openai_compatible.py,sha256=wfRR3PC2hatSCA8O6dDGicWXgE0CUtraPploS3J_8YM,5558
118
+ fast_agent/llm/provider/openai/llm_openrouter.py,sha256=RBTUkNBRqE8WoucCoVnXP5GhnMwc2tiRacXbMHVf1xM,1943
119
+ fast_agent/llm/provider/openai/llm_tensorzero_openai.py,sha256=z6FmWNa4LEeCDpWeBdCZHUBv02jmb_jxg9ZGxXw_OeM,5432
120
+ fast_agent/llm/provider/openai/llm_xai.py,sha256=fEyO9XlU3Ef1a-cXdJl0Qe-FmE562cA-UJOGvzqLO6M,1375
121
+ fast_agent/llm/provider/openai/multipart_converter_openai.py,sha256=q9mCbUY8ypIEE9anP24NWHxqFqtPbARz8oR3vCptUdw,20893
122
+ fast_agent/llm/provider/openai/openai_multipart.py,sha256=6NVH-xIIC09zJYI2scuXnQB2GggIwtT3X0XhUvuhxIE,6852
123
+ fast_agent/llm/provider/openai/openai_utils.py,sha256=EG6jZd6vnlntBQT1fCiPfg-3w1BgWr4ejCvYtLGpvmc,2028
124
+ fast_agent/llm/provider/openai/responses.py,sha256=94rh60P191ZsLkqT6FOtqsH4B9T58wOM-Aa6nCZ8kQQ,5158
125
+ fast_agent/mcp/__init__.py,sha256=bdJOIsJIG-T00ZqzlpAzNj_fpPE7Q6aN9Krhcrc-_0U,1419
126
+ fast_agent/mcp/common.py,sha256=cmCRA58UVzS9eR54-rre1SWolz38n_M27RDi8r4TOpw,838
127
+ fast_agent/mcp/elicitation_factory.py,sha256=ED2gXxM8qgaP4yQfKIZaS4BlzwrSI9JG5PA1CtfapWg,3159
128
+ fast_agent/mcp/elicitation_handlers.py,sha256=LQ1K642PixBahOMMMIN17uo3oPUTa_6rqlldUiRMLuI,6880
129
+ fast_agent/mcp/gen_client.py,sha256=Q0hhCVzC659GsvTLJIbhUBgGwsAJRL8b3ejTFokyjn4,3038
130
+ fast_agent/mcp/hf_auth.py,sha256=VqalW_nnlaZLSnj2p8xCK5NsWtwr5Zb0jyavjV-Tdxg,4769
131
+ fast_agent/mcp/interfaces.py,sha256=XTd_bQqEh3gbuUJCYUmyTbq5AbHX1JxudjLcGVxq0Rk,2385
132
+ fast_agent/mcp/logger_textio.py,sha256=4YLVXlXghdGm1s_qp1VoAWEX_eWufBfD2iD7l08yoak,3170
133
+ fast_agent/mcp/mcp_agent_client_session.py,sha256=LU3CrBKKYo_MMDdbvZZAMq98TZ720u7i01IHvFDSBPo,17081
134
+ fast_agent/mcp/mcp_aggregator.py,sha256=p6dWYfFHJ_bMp3R0MfVavzpYrt5TLdpIsUBgAZ57tdU,91465
135
+ fast_agent/mcp/mcp_connection_manager.py,sha256=aoM_zx8R_ASuDyRpHFcd2s1EWeaEArrPYHmLqjqkEZk,29405
136
+ fast_agent/mcp/mcp_content.py,sha256=47p7Mt7HfAWrzfcA9xKZMLsMKB5VK9it03ytsO4y50M,8814
137
+ fast_agent/mcp/mime_utils.py,sha256=D6YXNdZJ351BjacSW5o0sVF_hrWuRHD6UyWS4TDlLZI,2915
138
+ fast_agent/mcp/oauth_client.py,sha256=3shN3iwsJNXrk7nbcfUgrzNos3i2RuMuLXA80nR8r6Y,17104
139
+ fast_agent/mcp/prompt.py,sha256=7sk5JoDu6cyZ7PbVnkKqrOdUezpKA3ZBiWx-oRI6TgU,5971
140
+ fast_agent/mcp/prompt_message_extended.py,sha256=aWrPvsjLRAayGiZ4GIW3qDNnC4rTOhqqNANz3JKOfV0,4752
141
+ fast_agent/mcp/prompt_render.py,sha256=8-MIZzUkOEi9VUSZCP1ATC4DbBFhU6Y7olalzMIc4xs,2905
142
+ fast_agent/mcp/prompt_serialization.py,sha256=-OI9C6bsE9MTOiNIgVFdSTQ1tSH8hBcLjH9CpW1uRnE,20158
143
+ fast_agent/mcp/resource_utils.py,sha256=eY9UvTdFADBn-wD2jY4PkeXtW72fCon5ESx5clVdhp8,6545
144
+ fast_agent/mcp/sampling.py,sha256=Prig8VS3crU60jnMbLVE_dvcO-J-lg7DdBV5q_XAOnE,7452
145
+ fast_agent/mcp/skybridge.py,sha256=53KL-XVvK6bGiz5cgfIjcIAVRQfwxQ_K-_ykxhWDA9w,1309
146
+ fast_agent/mcp/sse_tracking.py,sha256=BG4Y84oVE3r8Ggsbda3zEh4yHYPsBzVnl9O_sithMxM,11748
147
+ fast_agent/mcp/stdio_tracking_simple.py,sha256=T6kCIb6YjwqKtXHz_6HvlLLYiSCbuggt2xCXSihVnIg,1918
148
+ fast_agent/mcp/streamable_http_tracking.py,sha256=bcNNReokho6WMjWEH13F33bUSkjJ2F5l3qnegkDqdMA,11465
149
+ fast_agent/mcp/tool_execution_handler.py,sha256=gdVt7mSQh_Idv27hhZsQvidSKLgkIkplVmYX9F0ocZY,3667
150
+ fast_agent/mcp/tool_permission_handler.py,sha256=vKSkze0HDhTruOuYGmdcCamvTVgnk20dV_MD2LhHGFs,2668
151
+ fast_agent/mcp/transport_tracking.py,sha256=Qm0c-QjlU4DJW3lI8oYR1CCia9gYxOHecKPY8hHFXYU,25617
152
+ fast_agent/mcp/types.py,sha256=BSKto-ArpIt1xiMaISF32xsPNlWVaFkf9rUnl085Q7o,643
153
+ fast_agent/mcp/ui_agent.py,sha256=OBGEuFpOPPK7EthPRwzxmtzu1SDIeZy-vHwdRsyDNQk,1424
154
+ fast_agent/mcp/ui_mixin.py,sha256=czaeoWixMM2gqrY4R7j0_BPg0CPuYT7WRCiLT09SJhI,7630
155
+ fast_agent/mcp/helpers/__init__.py,sha256=o6-HuX6bEVFnfT_wgclFOVb1NxtOsJEOnHX8L2IqDdw,857
156
+ fast_agent/mcp/helpers/content_helpers.py,sha256=xhowrwVUyN6PlS2Pw45mKBz7_mmYb97GkTFv7e9OXfw,10494
157
+ fast_agent/mcp/helpers/server_config_helpers.py,sha256=6h74eokpjJWHggIHBrPlF07UB6jQzV6MAQIiyv0BIzY,893
158
+ fast_agent/mcp/prompts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
159
+ fast_agent/mcp/prompts/__main__.py,sha256=Jsx30MceW6_f0rU_RJw2qQVB7zj2yRPP8mXXjBuJiNw,145
160
+ fast_agent/mcp/prompts/prompt_constants.py,sha256=Q9W0t3rOXl2LHIG9wcghApUV2QZ1iICuo7SwVwHUf3c,566
161
+ fast_agent/mcp/prompts/prompt_helpers.py,sha256=gW3W3u9hC_fA_qMnjZ4p-AzNCZcXN9VLC4UTWYFKluc,7458
162
+ fast_agent/mcp/prompts/prompt_load.py,sha256=czdI5eUs7TupqhwoJwat03JBs3h0tnfiimbIDl2SVVA,6520
163
+ fast_agent/mcp/prompts/prompt_server.py,sha256=C_2XeeGRncdWiBn3NDAvuB_THzATAuqRxAdIZdoq4Hg,20143
164
+ fast_agent/mcp/prompts/prompt_template.py,sha256=dOqnTWuSxT0j8io_HFk32NTMxhTwBJAD4KXSo8VcF_U,15656
165
+ fast_agent/mcp/server/__init__.py,sha256=AJFNzdmuHPRL3jqFhDVDJste_zYE_KJ3gGYDsbghvl0,156
166
+ fast_agent/mcp/server/agent_server.py,sha256=rdLtC56bpwmDJuNqSmajikY513lr_iLs95fcmG6SsLg,25517
167
+ fast_agent/resources/examples/data-analysis/analysis-campaign.py,sha256=SnDQm_e_cm0IZEKdWizUedXxpIWWj-5K70wmcM1Tw2Y,7277
168
+ fast_agent/resources/examples/data-analysis/analysis.py,sha256=0W1dN3SAx-RxEKoH3shAq42HxglEz9hc8BadGYmnwAk,2653
169
+ fast_agent/resources/examples/data-analysis/fastagent.config.yaml,sha256=ini94PHyJCfgpjcjHKMMbGuHs6LIj46F1NwY0ll5HVk,1609
170
+ fast_agent/resources/examples/data-analysis/mount-point/WA_Fn-UseC_-HR-Employee-Attrition.csv,sha256=pcMeOL1_r8m8MziE6xgbBrQbjl5Ijo98yycZn7O-dlk,227977
171
+ fast_agent/resources/examples/mcp/elicitations/elicitation_account_server.py,sha256=ZrPcj0kv75QXvtN0J_vhCmwxycnAodv35adUBZ9_8Ss,2903
172
+ fast_agent/resources/examples/mcp/elicitations/elicitation_forms_server.py,sha256=z0qeig75DlaNtlqasd1F1Q9hgVf-mOFnP0v2IBqI4yo,10857
173
+ fast_agent/resources/examples/mcp/elicitations/elicitation_game_server.py,sha256=z9kHdNc6XWjAWkvet7inVBIcYxfWoxU6n9iHrsEqU7A,6206
174
+ fast_agent/resources/examples/mcp/elicitations/fastagent.config.yaml,sha256=HPe0cuFL4-rzS4hHNgZiLMPEv0jYXOp7iSsrUliAaqs,1080
175
+ fast_agent/resources/examples/mcp/elicitations/fastagent.secrets.yaml.example,sha256=1vkBmh9f4mnQZm6-2B7vyU1OepImviPW5MNAJkvUIPE,394
176
+ fast_agent/resources/examples/mcp/elicitations/forms_demo.py,sha256=lyLr0Yf_C9gO7nOZI-KO6t7Pu62vPER-y1oiXb2a2T8,4451
177
+ fast_agent/resources/examples/mcp/elicitations/game_character.py,sha256=Br91dWo7qXOxYmZOYgRt-IxiQ6oCHHxI2jwN32HWsAo,2359
178
+ fast_agent/resources/examples/mcp/elicitations/game_character_handler.py,sha256=Y9UYdfaQXPrUGKPPH0x5g2n7hm_zgxm4QR6omoMHVYA,11211
179
+ fast_agent/resources/examples/mcp/elicitations/tool_call.py,sha256=14cNyAaYfmZtOY2QC0uJzRGXxh8NNZ5-PhAXjGA-z1s,516
180
+ fast_agent/resources/examples/mcp/state-transfer/agent_one.py,sha256=4Rm7m59WoObfl20XxGfqzrgOlpgpqBkSscwk4n5Wv2A,441
181
+ fast_agent/resources/examples/mcp/state-transfer/agent_two.py,sha256=deiJmGDJHWspaVIluGraXEmWWam_Eei41jjfGq9Yzig,464
182
+ fast_agent/resources/examples/mcp/state-transfer/fastagent.config.yaml,sha256=A6CUcDqnFXlkhsA_Mw-I0ys2Egn7a37AfVSWl89lvxA,797
183
+ fast_agent/resources/examples/mcp/state-transfer/fastagent.secrets.yaml.example,sha256=pVGyO_c6j3BToNpnL0d6W1FD5iLcuCNBrqA1sYMV-cA,422
184
+ fast_agent/resources/examples/researcher/fastagent.config.yaml,sha256=TbVMHQCKcytVr44o0cpsgP-tAJ2S2OlTgn6VnXSTIpM,2242
185
+ fast_agent/resources/examples/researcher/researcher-eval.py,sha256=MATCUXSiYh0JXvl-PrjS7gmaFsFxDWvfsAtLf3_jht0,1819
186
+ fast_agent/resources/examples/researcher/researcher-imp.py,sha256=XjlhxhpUYO6t8IJp8pXXg4nL-8weqe3IqzT4PM-ZiK8,7865
187
+ fast_agent/resources/examples/researcher/researcher.py,sha256=u4IpLvl58gvmCYdj_0jCGDaJbqZWWtIaJnrlD9C7TzI,1319
188
+ fast_agent/resources/examples/tensorzero/.env.sample,sha256=khV_apbP4XprpNuIaeVicnHaVHEkwIdWGyZCvW1OLDc,35
189
+ fast_agent/resources/examples/tensorzero/Makefile,sha256=BOvcJvPBAJN2MDh8brLsy2leHGwuT_bBjPzakOsUSCU,427
190
+ fast_agent/resources/examples/tensorzero/README.md,sha256=5L2Oy9pctPS5c3itnVZWEYGF1wvZ_IeLp1268B7Elds,2236
191
+ fast_agent/resources/examples/tensorzero/agent.py,sha256=Njxm2Nix-Vdil5XYokkBvFJdAHJOINdrI8__gPccEZw,1258
192
+ fast_agent/resources/examples/tensorzero/docker-compose.yml,sha256=YgmWgoHHDDTGeqRlU8Z21mLdEqo48IoKZsnlXaDZkrc,2851
193
+ fast_agent/resources/examples/tensorzero/fastagent.config.yaml,sha256=3uJJ9p-0evDG48zr2QneektO4fe_h4uRPh1dyWfe7-k,355
194
+ fast_agent/resources/examples/tensorzero/image_demo.py,sha256=uyJ9w1frC7K3kzTO38p-2VVL95mOTbQvkWqv76v_-aw,2103
195
+ fast_agent/resources/examples/tensorzero/simple_agent.py,sha256=_eVVpWk-ae1qllK2WWbRi-qKo6FzIcmLb3G4CGlB91U,844
196
+ fast_agent/resources/examples/tensorzero/demo_images/clam.jpg,sha256=K1NWrhz5QMfgjZfDMMIVctWwbwTyJSsPHLDaUMbcn18,22231
197
+ fast_agent/resources/examples/tensorzero/demo_images/crab.png,sha256=W7R3bSKKDmZCjxJEmFk0pBXVhXXhfPGM1gIiVuv_eu4,58413
198
+ fast_agent/resources/examples/tensorzero/demo_images/shrimp.png,sha256=2r3c6yHE25MpVRDTTwxjAGs1ShJ2UI-qxJqbxa-9ew4,7806
199
+ fast_agent/resources/examples/tensorzero/mcp_server/Dockerfile,sha256=pujKW5xDY5q0PvIYsn8Wsh9Tz2F3sVuKTJc3o8lgt4M,681
200
+ fast_agent/resources/examples/tensorzero/mcp_server/entrypoint.sh,sha256=yLUXZKd4mF2k_ZFAd6125ZstLmrtksePpfgCNdewSyU,1123
201
+ fast_agent/resources/examples/tensorzero/mcp_server/mcp_server.py,sha256=8Wr6VzNFihri3mv9wLo37i5Ly1VWL4s4jSnfiRG7Ez0,933
202
+ fast_agent/resources/examples/tensorzero/mcp_server/pyproject.toml,sha256=3AppZ_HbIEmRGg_phGuEOq-Q63CY_IIsrIBr658ka9U,228
203
+ fast_agent/resources/examples/tensorzero/tensorzero_config/system_schema.json,sha256=q81vtb8eyX1gU0qOhT_BFNo7nI2Lg2o-D_Bvp8watEI,626
204
+ fast_agent/resources/examples/tensorzero/tensorzero_config/system_template.minijinja,sha256=_Ekz9YuE76pkmwtcMNJeDlih2U5vPRgFB5wFojAVde8,501
205
+ fast_agent/resources/examples/tensorzero/tensorzero_config/tensorzero.toml,sha256=wYDKzHyX0A2x42d1vF5a72ot304iTP8_i5Y1rzAcCEA,890
206
+ fast_agent/resources/examples/workflows/agents_as_tools_extended.py,sha256=m_6Capj9YeVtRoe24M2SRAIsiKy1w6eDwpaqHhbv6TM,2953
207
+ fast_agent/resources/examples/workflows/agents_as_tools_simple.py,sha256=gqcubNs42STHTn7xEBeYu64FJgUyAM2JTFQAlVBtHVw,1719
208
+ fast_agent/resources/examples/workflows/chaining.py,sha256=dMF1QQQIU57OHAByHYmEH3dpWK7E3dwZmpT9Q4-iwTQ,893
209
+ fast_agent/resources/examples/workflows/evaluator.py,sha256=d0If_G14JeZwvRTugz3FPV18FWQBQmfj-cuZpxZXHzs,3097
210
+ fast_agent/resources/examples/workflows/fastagent.config.yaml,sha256=UuBqQ3hyyrIGdhvBUDRFzQNHMGPfVEKLB_EECsS6TPg,846
211
+ fast_agent/resources/examples/workflows/graded_report.md,sha256=QVF38xEtDIO1a2P-xv2hlBEG6KKYughtFkzDhY2NpzE,2726
212
+ fast_agent/resources/examples/workflows/human_input.py,sha256=gFuptgiU0mMMtv3F1XI7syCSyVV8tyi5qTOn9ziJdWI,792
213
+ fast_agent/resources/examples/workflows/maker.py,sha256=Xj_3WCWh28HQfSLChy_NJ7_XySLkev6pN5DeW-gBtx8,6261
214
+ fast_agent/resources/examples/workflows/orchestrator.py,sha256=YWSgH8cDqEuWercgof2aZLbrO0idiSL932ym3lrniNM,2526
215
+ fast_agent/resources/examples/workflows/parallel.py,sha256=kROiRueTm0Wql4EWVjFSyonV5A4gPepm1jllz5alias,1826
216
+ fast_agent/resources/examples/workflows/router.py,sha256=D1CObiS878Issr-O5ItdhvMjaUzWLR9EJxjEHe6tFOY,2153
217
+ fast_agent/resources/examples/workflows/short_story.md,sha256=XN9I2kzCcMmke3dE5F2lyRH5iFUZUQ8Sy-hS3rm_Wlc,1153
218
+ fast_agent/resources/examples/workflows/short_story.txt,sha256=X3y_1AyhLFN2AKzCKvucJtDgAFIJfnlbsbGZO5bBWu0,1187
219
+ fast_agent/resources/setup/.gitignore,sha256=bksf0bkvBXtm3F5Nd4F9FB2LaO2RcTbHujYWjq5JKPo,305
220
+ fast_agent/resources/setup/agent.py,sha256=Xeh9edHRMlR5VkJieeV_HPOd2LzCGqM8Dx84VNWep2U,568
221
+ fast_agent/resources/setup/fastagent.config.yaml,sha256=aXPjQY_LUSTieE26AOZD1Lv_zJViBTlsS-kMz2ESSk4,2143
222
+ fast_agent/resources/setup/fastagent.secrets.yaml.example,sha256=mwrbF9xKzwQcd8HkDTnZGzMyzIIqSzXJhOVNDGnmi7Y,1037
223
+ fast_agent/resources/setup/pyproject.toml.tmpl,sha256=SxyVPXbtD67yFOx9wIrzq6Yxo4W2PkSR1rrnPkmpjwA,478
224
+ fast_agent/skills/__init__.py,sha256=3BaJ4be9MtYIglPJoCd2yUxdj86iDMTP-ljGCcSjfKM,200
225
+ fast_agent/skills/registry.py,sha256=WtyuFdIfmyZGJWZ-X0FJWVq438QYgegBrcZdEXB8m10,9340
226
+ fast_agent/tools/elicitation.py,sha256=dC4vvyVL6MWnzt72V3ahZOH-nhyZkc3VxaTTY58OvMo,13397
227
+ fast_agent/tools/shell_runtime.py,sha256=8dnIykwS6I07BOcZ3OcBF5RUgR9qQ4ipbEuJG9VJjIU,17797
228
+ fast_agent/types/__init__.py,sha256=CORD0410EBHok6UE7MW2-YKjnHlWsVCAgQmC8pMS0Co,1615
229
+ fast_agent/types/conversation_summary.py,sha256=ob1AsKg8wTvrbO6gz37GZrkjxP__Xhx6uz2CkMo6O6s,10763
230
+ fast_agent/types/llm_stop_reason.py,sha256=n2TUyqpEWRCxpnUXz4XQHh4BcJdApt0Hd1x7sjxVOsE,2366
231
+ fast_agent/types/message_search.py,sha256=1F7ixAnzW3pHyMETpXiQAOoK15Aw2tMle8IMaq9HlsY,7449
232
+ fast_agent/ui/__init__.py,sha256=MXxTQjFdF7mI_3JHxBPd-aoZYLlxV_-51-Trqgv5-3w,1104
233
+ fast_agent/ui/console.py,sha256=DYypaK8Nwl8GP9x1kYwEeUzHGfijfUcCd5CzRW6eyMo,1826
234
+ fast_agent/ui/console_display.py,sha256=befckhjlnrtjFurTFgBEjCLq4hlJc2dynlaJQLk8EY0,43177
235
+ fast_agent/ui/elicitation_form.py,sha256=qPK0SJ2od9feICaAsjnhkkgWojrd7gQWXxRxaOExLlE,37244
236
+ fast_agent/ui/elicitation_style.py,sha256=rS0qSS5c6if97STud4jKahs0HLvh9I6MVL1swDyCvck,3943
237
+ fast_agent/ui/enhanced_prompt.py,sha256=e8RuNUJnoksMIEbxAzwwrUB5HNZueSHAuVj_hPL11Jc,57268
238
+ fast_agent/ui/history_display.py,sha256=bGi027t8s8vPNQ7GBPq4GqcSkHzSH9LHMMDMdnavs9A,25189
239
+ fast_agent/ui/interactive_prompt.py,sha256=_nApkMryGhpy6yNUCsRyaWxSIXd3BFYPZqKJvnkd6aw,53794
240
+ fast_agent/ui/markdown_helpers.py,sha256=r42hbwiGxYA1Xwf5o_BoP0k8d52aT_eZ_x6xNfDuCWU,3497
241
+ fast_agent/ui/markdown_truncator.py,sha256=Ob7Vmn_dskA86xafaK3XJ7hbTyM7dP5uG66_radYG5k,42278
242
+ fast_agent/ui/mcp_display.py,sha256=H79eRVNS-oH1BVPetRf4Ssw1jg2zD-tz30rkP3WqHec,31479
243
+ fast_agent/ui/mcp_ui_utils.py,sha256=TELJtAKFeeIAX5AFOFnLRFiInmVuqHqLsz1a4uwCmW4,8451
244
+ fast_agent/ui/mermaid_utils.py,sha256=gTlo_Od7k1oKDBJrwZFXjRZcYGeIDet3l9829UmkoGM,5295
245
+ fast_agent/ui/message_primitives.py,sha256=0w5QTGjG409YBsDADZfk7F78JbiucpjURj3MYn7-Pqk,1211
246
+ fast_agent/ui/notification_tracker.py,sha256=Kt4rugnvZBO0agK_2UrV_B-cYi-MGa_hqdSukMxpLT8,5807
247
+ fast_agent/ui/plain_text_truncator.py,sha256=mx24CuxHq8Vy2r7IGOmGRhVkEZHyyWNsy8ZU0m3YxdA,2326
248
+ fast_agent/ui/progress_display.py,sha256=hajDob65PttiJ2mPS6FsCtnmTcnyvDWGn-UqQboXqkQ,361
249
+ fast_agent/ui/rich_progress.py,sha256=Vm-Fh-Du5cYUVsENfLvC2fmg9_l4Xq99D1H9bkDU7Jc,7958
250
+ fast_agent/ui/streaming.py,sha256=VwYLIeKvKrhUfjRksYi3ktwhAOGb41BvFQQAwjIJXEM,27635
251
+ fast_agent/ui/streaming_buffer.py,sha256=cU5NxHF20fdEyRggrX7C96CQD5-FunrWdf-1WlRzwQE,16654
252
+ fast_agent/ui/tool_display.py,sha256=tjaSVNC1NZubjbK8hh4NOMtlCvb65ITcauE8WkTK0wM,16311
253
+ fast_agent/ui/usage_display.py,sha256=O1fKZqpb5vHpXCenOjBQCP6qaiFP6kqHanCImFnNiYA,7189
254
+ fast_agent/utils/__init__.py,sha256=jhw8UWGbre8UVBHhcAQw8n9vnMIsRe3Ke8sArdpRPfQ,104
255
+ fast_agent/utils/reasoning_stream_parser.py,sha256=Qj7XomgjLoGgmliZlQY3fX24okWqs5o2ct03f_GiLlM,2585
256
+ fast_agent/utils/time.py,sha256=Hz8kKxTnFPyIsPd40N5hpfuJWs9YrXCfuXB2OBymmDA,597
257
+ fast_agent_mcp-0.4.7.dist-info/METADATA,sha256=eX6CuxDwuR8V9wvuZZ6uAWS1J4Nix9zr4I8N5Fc3kyM,35558
258
+ fast_agent_mcp-0.4.7.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
259
+ fast_agent_mcp-0.4.7.dist-info/entry_points.txt,sha256=IVSTewSY_398SAYI_jxjgSBsci9mV3OmSDeO_viNdb8,297
260
+ fast_agent_mcp-0.4.7.dist-info/licenses/LICENSE,sha256=Gx1L3axA4PnuK4FxsbX87jQ1opoOkSFfHHSytW6wLUU,10935
261
+ fast_agent_mcp-0.4.7.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,7 @@
1
+ [console_scripts]
2
+ fast-agent = fast_agent.cli.__main__:main
3
+ fast-agent-acp = fast_agent.cli.commands.acp:main
4
+ fast-agent-hf = fast_agent.cli.commands.hf:main
5
+ fast-agent-mcp = fast_agent.cli.__main__:main
6
+ fastagent = fast_agent.cli.__main__:app
7
+ prompt-server = fast_agent.mcp.prompts.__main__:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright 2025 llmindset.co.uk
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.