trpc-agent-py 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- trpc_agent_py-0.1.0/.coveragerc +1 -0
- trpc_agent_py-0.1.0/.flake8 +3 -0
- trpc_agent_py-0.1.0/.gitignore +26 -0
- trpc_agent_py-0.1.0/.yapfignore +25 -0
- trpc_agent_py-0.1.0/CHANGELOG.md +20 -0
- trpc_agent_py-0.1.0/CODE-OF-CONDUCT.md +50 -0
- trpc_agent_py-0.1.0/CONTRIBUTING.md +149 -0
- trpc_agent_py-0.1.0/LICENSE +135 -0
- trpc_agent_py-0.1.0/PKG-INFO +680 -0
- trpc_agent_py-0.1.0/README.md +565 -0
- trpc_agent_py-0.1.0/README.zh_CN.md +565 -0
- trpc_agent_py-0.1.0/build.sh +14 -0
- trpc_agent_py-0.1.0/build_mac.sh +14 -0
- trpc_agent_py-0.1.0/clean.sh +31 -0
- trpc_agent_py-0.1.0/coverage.sh +15 -0
- trpc_agent_py-0.1.0/dist_pkg.sh +24 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/agent_cancel.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/architecture.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/claude_agent_architecture.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/container0.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/container1.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/eval_run.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/eval_trace.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/graph_architecture.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/human_in_the_loop.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/local0.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/assets/imgs/local1.png +0 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/a2a.md +502 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/agui.md +335 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/cancel.md +1034 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/claude_agent.md +701 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/code_executor.md +306 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/custom_agent.md +261 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/dsl.md +251 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/evaluation.md +2442 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/filter.md +262 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/graph.md +723 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/human_in_the_loop.md +432 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge.md +679 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_custom_components.md +345 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_document_loader.md +138 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_embedder.md +96 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_prompt_template.md +145 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_retrievers.md +93 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_text_splitter.md +96 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/knowledge_vectorstore.md +644 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/langgraph_agent.md +552 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/llm_agent.md +894 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/memory.md +1242 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/model.md +413 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/multi_agents.md +648 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/openclaw.md +403 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/session.md +960 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/session_redis.md +1326 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/session_sql.md +851 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/session_summary.md +579 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/skill.md +2140 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/team.md +880 -0
- trpc_agent_py-0.1.0/docs/mkdocs/en/tool.md +2262 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/a2a.md +502 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/agui.md +335 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/cancel.md +1033 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/claude_agent.md +701 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/code_executor.md +306 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/custom_agent.md +261 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/dsl.md +251 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/evaluation.md +2439 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/filter.md +262 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/graph.md +722 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/human_in_the_loop.md +434 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge.md +678 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_custom_components.md +345 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_document_loader.md +138 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_embedder.md +96 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_prompt_template.md +145 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_retrievers.md +92 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_text_splitter.md +96 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/knowledge_vectorstore.md +644 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/langgraph_agent.md +552 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/llm_agent.md +895 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/memory.md +1242 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/model.md +413 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/multi_agents.md +648 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/openclaw.md +403 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/session.md +960 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/session_redis.md +1326 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/session_sql.md +851 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/session_summary.md +579 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/skill.md +2138 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/team.md +880 -0
- trpc_agent_py-0.1.0/docs/mkdocs/zh/tool.md +2262 -0
- trpc_agent_py-0.1.0/examples/a2a/.env +4 -0
- trpc_agent_py-0.1.0/examples/a2a/README.md +137 -0
- trpc_agent_py-0.1.0/examples/a2a/__init__.py +26 -0
- trpc_agent_py-0.1.0/examples/a2a/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/a2a/agent/agent.py +43 -0
- trpc_agent_py-0.1.0/examples/a2a/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/a2a/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/a2a/agent/tools.py +43 -0
- trpc_agent_py-0.1.0/examples/a2a/run_server.py +71 -0
- trpc_agent_py-0.1.0/examples/a2a/test_a2a.py +156 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/.env +4 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/README.md +309 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/__init__.py +25 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/agent/agent.py +42 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/agent/tools.py +54 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/run_server.py +77 -0
- trpc_agent_py-0.1.0/examples/a2a_with_cancel/test_a2a_cancel.py +267 -0
- trpc_agent_py-0.1.0/examples/agent_tools/.env +4 -0
- trpc_agent_py-0.1.0/examples/agent_tools/README.md +116 -0
- trpc_agent_py-0.1.0/examples/agent_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/agent_tools/agent/agent.py +41 -0
- trpc_agent_py-0.1.0/examples/agent_tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/agent_tools/agent/prompts.py +14 -0
- trpc_agent_py-0.1.0/examples/agent_tools/agent/tools.py +34 -0
- trpc_agent_py-0.1.0/examples/agent_tools/run_agent.py +81 -0
- trpc_agent_py-0.1.0/examples/agui/.env +4 -0
- trpc_agent_py-0.1.0/examples/agui/README.md +143 -0
- trpc_agent_py-0.1.0/examples/agui/_agui_runner.py +138 -0
- trpc_agent_py-0.1.0/examples/agui/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/agui/agent/agent.py +57 -0
- trpc_agent_py-0.1.0/examples/agui/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/agui/agent/prompts.py +31 -0
- trpc_agent_py-0.1.0/examples/agui/agent/tools.py +36 -0
- trpc_agent_py-0.1.0/examples/agui/client_js/main.js +62 -0
- trpc_agent_py-0.1.0/examples/agui/client_js/package.json +16 -0
- trpc_agent_py-0.1.0/examples/agui/run_server.py +42 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/.env +4 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/README.md +156 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/_agui_runner.py +112 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/agent/agent.py +43 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/agent/tools.py +42 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/client_js/main.js +58 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/client_js/package.json +16 -0
- trpc_agent_py-0.1.0/examples/agui_with_cancel/run_server.py +42 -0
- trpc_agent_py-0.1.0/examples/claude_agent/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent/README.md +119 -0
- trpc_agent_py-0.1.0/examples/claude_agent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent/agent/agent.py +44 -0
- trpc_agent_py-0.1.0/examples/claude_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/claude_agent/agent/tools.py +38 -0
- trpc_agent_py-0.1.0/examples/claude_agent/run_agent.py +105 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/README.md +162 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/agent/agent.py +48 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/agent/tools.py +44 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_cancel/run_agent.py +309 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/README.md +136 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/agent/agent.py +52 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_code_writer/run_agent.py +101 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/.claude/skills/traver_helper/SKILL.md +147 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/README.md +142 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/agent/agent.py +69 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/agent/tools.py +13 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_skills/run_agent.py +79 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/README.md +182 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/agent/agent.py +63 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/agent/prompts.py +35 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/agent/tools.py +71 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_streaming_tool/run_agent.py +149 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/.env +4 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/README.md +171 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/agent/agent.py +61 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/agent/prompts.py +12 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/agent/tools.py +35 -0
- trpc_agent_py-0.1.0/examples/claude_agent_with_travel_planner/run_agent.py +103 -0
- trpc_agent_py-0.1.0/examples/code_executors/.env +4 -0
- trpc_agent_py-0.1.0/examples/code_executors/README.md +211 -0
- trpc_agent_py-0.1.0/examples/code_executors/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/code_executors/agent/agent.py +80 -0
- trpc_agent_py-0.1.0/examples/code_executors/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/code_executors/agent/prompts.py +20 -0
- trpc_agent_py-0.1.0/examples/code_executors/agent/tools.py +6 -0
- trpc_agent_py-0.1.0/examples/code_executors/run_agent.py +97 -0
- trpc_agent_py-0.1.0/examples/dsl/README.md +10 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/.env +13 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/README.md +153 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/agent.py +132 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/callbacks.py +13 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/config.py +64 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/nodes.py +39 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/prompts.py +17 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/state.py +20 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/agent/tools.py +38 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/requirements.txt +56 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/run_agent.py +220 -0
- trpc_agent_py-0.1.0/examples/dsl/classifier_mcp/workflow.json +164 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/.env +4 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/README.md +359 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/__init__.py +35 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/_app.py +282 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/_runner_manager.py +162 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/_schemas.py +61 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/agent/tools.py +29 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/run_server.py +160 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/test/client.py +324 -0
- trpc_agent_py-0.1.0/examples/fastapi_server/test/curl_cli.sh +21 -0
- trpc_agent_py-0.1.0/examples/file_tools/.env +4 -0
- trpc_agent_py-0.1.0/examples/file_tools/README.md +161 -0
- trpc_agent_py-0.1.0/examples/file_tools/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/file_tools/agent/agent.py +64 -0
- trpc_agent_py-0.1.0/examples/file_tools/agent/config.py +16 -0
- trpc_agent_py-0.1.0/examples/file_tools/agent/prompts.py +35 -0
- trpc_agent_py-0.1.0/examples/file_tools/run_agent.py +126 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/.env +4 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/README.md +195 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/agent.py +42 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/filter.py +40 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/agent/tools.py +29 -0
- trpc_agent_py-0.1.0/examples/filter_with_agent/run_agent.py +87 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/.env +4 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/README.md +147 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/agent.py +46 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/filter.py +42 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/agent/tools.py +29 -0
- trpc_agent_py-0.1.0/examples/filter_with_model/run_agent.py +87 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/.env +4 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/README.md +126 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/agent.py +40 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/filter.py +40 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/agent/tools.py +29 -0
- trpc_agent_py-0.1.0/examples/filter_with_tool/run_agent.py +87 -0
- trpc_agent_py-0.1.0/examples/function_tools/.env +4 -0
- trpc_agent_py-0.1.0/examples/function_tools/README.md +148 -0
- trpc_agent_py-0.1.0/examples/function_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/function_tools/agent/agent.py +48 -0
- trpc_agent_py-0.1.0/examples/function_tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/function_tools/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/function_tools/agent/tools.py +148 -0
- trpc_agent_py-0.1.0/examples/function_tools/run_agent.py +84 -0
- trpc_agent_py-0.1.0/examples/graph/.env +4 -0
- trpc_agent_py-0.1.0/examples/graph/README.md +364 -0
- trpc_agent_py-0.1.0/examples/graph/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/graph/agent/agent.py +275 -0
- trpc_agent_py-0.1.0/examples/graph/agent/callbacks.py +123 -0
- trpc_agent_py-0.1.0/examples/graph/agent/config.py +36 -0
- trpc_agent_py-0.1.0/examples/graph/agent/nodes.py +276 -0
- trpc_agent_py-0.1.0/examples/graph/agent/prompts.py +21 -0
- trpc_agent_py-0.1.0/examples/graph/agent/state.py +25 -0
- trpc_agent_py-0.1.0/examples/graph/agent/tools.py +93 -0
- trpc_agent_py-0.1.0/examples/graph/mcp_server.py +61 -0
- trpc_agent_py-0.1.0/examples/graph/run_agent.py +193 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/.env +4 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/README.md +207 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/agent.py +111 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/callbacks.py +13 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/nodes.py +107 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/prompts.py +14 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/state.py +23 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/agent/tools.py +6 -0
- trpc_agent_py-0.1.0/examples/graph_multi_turns/run_agent.py +165 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/.env +4 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/README.md +173 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/agent.py +111 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/callbacks.py +13 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/nodes.py +120 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/prompts.py +14 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/state.py +25 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/agent/tools.py +6 -0
- trpc_agent_py-0.1.0/examples/graph_with_interrupt/run_agent.py +211 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/.env +4 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/README.md +159 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/agent/agent.py +78 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/agent/config.py +12 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/agent/tools.py +196 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_custom_components/run_agent.py +96 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/.env +10 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/README.md +194 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/agent/tools.py +142 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_documentloader/run_agent.py +117 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/.env +4 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/README.md +161 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/agent/agent.py +32 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/agent/prompts.py +40 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/agent/tools.py +116 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_prompt_template/run_agent.py +142 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/.env +4 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/README.md +169 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/agent/tools.py +84 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_rag_agent/run_agent.py +84 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/.env +4 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/README.md +165 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/agent/agent.py +36 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/agent/tools.py +71 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_searchtool_rag_agent/run_agent.py +77 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/.env +30 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/README.md +175 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/agent/config.py +78 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/agent/tools.py +199 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/run_agent.py +84 -0
- trpc_agent_py-0.1.0/examples/knowledge_with_vectorstore/test.txt +3 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/.env +4 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/README.md +121 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/agent/config.py +27 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/agent/tools.py +43 -0
- trpc_agent_py-0.1.0/examples/langchain_tools/run_agent.py +78 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/.env +4 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/README.md +138 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/agent/__init__.py +6 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/agent/agent.py +207 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/agent/tools.py +41 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent/run_agent.py +145 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/.env +4 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/README.md +190 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/agent/__init__.py +6 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/agent/agent.py +105 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/agent/tools.py +79 -0
- trpc_agent_py-0.1.0/examples/langgraph_agent_with_cancel/run_agent.py +304 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/.env +4 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/README.md +141 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/agent/agent.py +132 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/agent/prompts.py +15 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/agent/tools.py +22 -0
- trpc_agent_py-0.1.0/examples/langgraphagent_with_human_in_the_loop/run_agent.py +143 -0
- trpc_agent_py-0.1.0/examples/litellm/.env +4 -0
- trpc_agent_py-0.1.0/examples/litellm/README.md +132 -0
- trpc_agent_py-0.1.0/examples/litellm/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/litellm/agent/agent.py +35 -0
- trpc_agent_py-0.1.0/examples/litellm/agent/config.py +18 -0
- trpc_agent_py-0.1.0/examples/litellm/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/litellm/agent/tools.py +56 -0
- trpc_agent_py-0.1.0/examples/litellm/run_agent.py +82 -0
- trpc_agent_py-0.1.0/examples/llmagent/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent/README.md +154 -0
- trpc_agent_py-0.1.0/examples/llmagent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent/agent/agent.py +54 -0
- trpc_agent_py-0.1.0/examples/llmagent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent/agent/prompts.py +38 -0
- trpc_agent_py-0.1.0/examples/llmagent/agent/tools.py +51 -0
- trpc_agent_py-0.1.0/examples/llmagent/run_agent.py +79 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/README.md +131 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/agent/agent.py +93 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/agent/prompts.py +28 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/agent/tools.py +33 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_branch_filtering/run_agent.py +132 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/README.md +181 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/agent/agent.py +49 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/agent/tools.py +44 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_cancel/run_agent.py +292 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/README.md +139 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/agent/agent.py +205 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/agent/prompts.py +80 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_agent/run_agent.py +127 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/README.md +118 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/agent/agent.py +97 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/agent/prompts.py +24 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/agent/tools.py +35 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_custom_prompt/run_agent.py +113 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/README.md +110 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/agent/agent.py +55 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/agent/prompts.py +15 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/agent/tools.py +49 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_human_in_the_loop/run_agent.py +168 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/README.md +116 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/agent/agent.py +40 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_max_history_messages/run_agent.py +92 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/README.md +108 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/agent/agent.py +50 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/agent/prompts.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/agent/tools.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_model_create_fn/run_agent.py +72 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/README.md +111 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/agent/agent.py +64 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/agent/prompts.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/agent/tools.py +78 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_parallal_tools/run_agent.py +89 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/.env +2 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/README.md +168 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/agent/agent.py +111 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/agent/prompts.py +63 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/agent/tools.py +55 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_schema/run_agent.py +237 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/README.md +87 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/agent/agent.py +123 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/agent/prompts.py +36 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/agent/tools.py +302 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_complex/run_agent.py +214 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/README.md +83 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/agent/agent.py +61 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/agent/prompts.py +34 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/agent/tools.py +35 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_streaming_tool_simple/run_agent.py +126 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/README.md +85 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/agent/agent.py +66 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/agent/prompts.py +38 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/agent/tools.py +51 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_thinking/run_agent.py +79 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/README.md +86 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/agent/agent.py +42 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_timeline_filtering/run_agent.py +99 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/README.md +84 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/agent/agent.py +58 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/agent/prompts.py +10 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/agent/tools.py +51 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_tool_prompt/run_agent.py +79 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/.env +1 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/README.md +83 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/agent/agent.py +34 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/agent/prompts.py +12 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/agent/tools.py +25 -0
- trpc_agent_py-0.1.0/examples/llmagent_with_user_history/run_agent.py +90 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/.env +1 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/README.md +166 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/agent/agent.py +41 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/agent/prompts.py +11 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/agent/tools.py +81 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/mcp_server.py +69 -0
- trpc_agent_py-0.1.0/examples/mcp_tools/run_agent.py +120 -0
- trpc_agent_py-0.1.0/examples/mem_0/.env +1 -0
- trpc_agent_py-0.1.0/examples/mem_0/README.md +372 -0
- trpc_agent_py-0.1.0/examples/mem_0/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/mem_0/agent/agent.py +50 -0
- trpc_agent_py-0.1.0/examples/mem_0/agent/config.py +61 -0
- trpc_agent_py-0.1.0/examples/mem_0/agent/prompts.py +13 -0
- trpc_agent_py-0.1.0/examples/mem_0/agent/tools.py +6 -0
- trpc_agent_py-0.1.0/examples/mem_0/images/mem0_ai.png +0 -0
- trpc_agent_py-0.1.0/examples/mem_0/images/mem0_plat.png +0 -0
- trpc_agent_py-0.1.0/examples/mem_0/images/mem0_result.png +0 -0
- trpc_agent_py-0.1.0/examples/mem_0/images/qdrant_dashboard.png +0 -0
- trpc_agent_py-0.1.0/examples/mem_0/images/qdrant_mem.png +0 -0
- trpc_agent_py-0.1.0/examples/mem_0/run_agent.py +85 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/.env +1 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/README.md +85 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/agent/agent.py +38 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/agent/tools.py +30 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_in_memory/run_agent.py +110 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/.env +1 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/README.md +785 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/agent/agent.py +38 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/agent/config.py +61 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/agent/tools.py +30 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/images/local_infer_false.png +0 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/images/local_infer_true.png +0 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/images/remote_infer_false.png +0 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/images/remote_infer_true.png +0 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_mem0/run_agent.py +134 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/.env +1 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/README.md +1070 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/agent/agent.py +38 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/agent/tools.py +30 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_redis/run_agent.py +136 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/.env +1 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/README.md +82 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/agent/agent.py +38 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/agent/tools.py +32 -0
- trpc_agent_py-0.1.0/examples/memory_service_with_sql/run_agent.py +132 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/README.md +81 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/agent/agent.py +73 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/agent/prompts.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/agent/tools.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_chain/run_agent.py +59 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/README.md +85 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/agent/agent.py +82 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/agent/prompts.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/agent/tools.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_compose/run_agent.py +67 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/README.md +87 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/agent/agent.py +110 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/agent/prompts.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/agent/tools.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_cycle/run_agent.py +70 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/README.md +83 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/agent/agent.py +64 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/agent/prompts.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/agent/tools.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_parallel/run_agent.py +72 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/README.md +86 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/agent/agent.py +72 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/agent/prompts.py +50 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/agent/tools.py +37 -0
- trpc_agent_py-0.1.0/examples/multi_agent_start_from_last/run_agent.py +97 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/.env +1 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/README.md +85 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/agent/agent.py +102 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/agent/prompts.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/agent/tools.py +5 -0
- trpc_agent_py-0.1.0/examples/multi_agent_subagent/run_agent.py +78 -0
- trpc_agent_py-0.1.0/examples/quickstart/.env +1 -0
- trpc_agent_py-0.1.0/examples/quickstart/README.md +82 -0
- trpc_agent_py-0.1.0/examples/quickstart/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/quickstart/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/quickstart/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/quickstart/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/quickstart/agent/tools.py +29 -0
- trpc_agent_py-0.1.0/examples/quickstart/run_agent.py +87 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/.env +1 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/README.md +85 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/agent/tools.py +30 -0
- trpc_agent_py-0.1.0/examples/session_service_with_in_memory/run_agent.py +105 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/.env +1 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/README.md +889 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/agent/tools.py +32 -0
- trpc_agent_py-0.1.0/examples/session_service_with_redis/run_agent.py +132 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/.env +1 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/README.md +83 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/agent/agent.py +37 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/agent/tools.py +32 -0
- trpc_agent_py-0.1.0/examples/session_service_with_sql/run_agent.py +130 -0
- trpc_agent_py-0.1.0/examples/session_state/.env +1 -0
- trpc_agent_py-0.1.0/examples/session_state/README.md +90 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/agent.py +86 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/prompts.py +8 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/tools.py +62 -0
- trpc_agent_py-0.1.0/examples/session_state/agent/utils.py +39 -0
- trpc_agent_py-0.1.0/examples/session_state/run_agent.py +222 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/.env +1 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/README.md +107 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/agent.py +36 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/filters.py +198 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/prompts.py +15 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/agent/tools.py +6 -0
- trpc_agent_py-0.1.0/examples/session_summarizer/run_agent.py +248 -0
- trpc_agent_py-0.1.0/examples/skills/.env +1 -0
- trpc_agent_py-0.1.0/examples/skills/README.md +55 -0
- trpc_agent_py-0.1.0/examples/skills/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/skills/agent/agent.py +41 -0
- trpc_agent_py-0.1.0/examples/skills/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/skills/agent/prompts.py +36 -0
- trpc_agent_py-0.1.0/examples/skills/agent/tools.py +50 -0
- trpc_agent_py-0.1.0/examples/skills/run_agent.py +119 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/SKILL.md +44 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/references/data_analysis_patterns.md +67 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/references/numpy_basics.txt +36 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/references/pandas_guide.md +92 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/scripts/analyze_csv.py +90 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/scripts/describe_data.py +110 -0
- trpc_agent_py-0.1.0/examples/skills/skills/data_analysis/scripts/summarize_data.py +172 -0
- trpc_agent_py-0.1.0/examples/skills/skills/file_tools/SKILL.md +34 -0
- trpc_agent_py-0.1.0/examples/skills/skills/file_tools/USAGE.md +11 -0
- trpc_agent_py-0.1.0/examples/skills/skills/file_tools/scripts/write_sample.sh +9 -0
- trpc_agent_py-0.1.0/examples/skills/skills/python_math/SKILL.md +31 -0
- trpc_agent_py-0.1.0/examples/skills/skills/python_math/scripts/fib.py +24 -0
- trpc_agent_py-0.1.0/examples/skills/skills/user_file_ops/SKILL.md +47 -0
- trpc_agent_py-0.1.0/examples/skills/skills/user_file_ops/scripts/summarize_file.sh +33 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/.env +1 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/README.md +54 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/agent/agent.py +40 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/agent/prompts.py +36 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/agent/tools.py +118 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/run_agent.py +115 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/skills/python_math/SKILL.md +31 -0
- trpc_agent_py-0.1.0/examples/skills_with_container/skills/python_math/scripts/fib.py +24 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/.env +1 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/README.md +55 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/agent.py +45 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/prompts.py +208 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/tools/__init__.py +22 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/tools/_dynamic.py +25 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/tools/_skill_tools.py +65 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/agent/tools/_tools.py +83 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/run_agent.py +97 -0
- trpc_agent_py-0.1.0/examples/skills_with_dynamic_tools/skills/weather-tools/SKILL.md +81 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/.env +1 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/README.md +52 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/agent/agent.py +45 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/agent/config.py +20 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/agent/prompts.py +9 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/agent/tools.py +38 -0
- trpc_agent_py-0.1.0/examples/streaming_tools/run_agent.py +92 -0
- trpc_agent_py-0.1.0/examples/team/.env +1 -0
- trpc_agent_py-0.1.0/examples/team/README.md +54 -0
- trpc_agent_py-0.1.0/examples/team/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team/agent/agent.py +72 -0
- trpc_agent_py-0.1.0/examples/team/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team/agent/prompts.py +29 -0
- trpc_agent_py-0.1.0/examples/team/agent/tools.py +57 -0
- trpc_agent_py-0.1.0/examples/team/run_agent.py +97 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/README.md +59 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/agent/agent.py +95 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/agent/prompts.py +29 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/agent/tools.py +54 -0
- trpc_agent_py-0.1.0/examples/team_as_sub_agent/run_agent.py +133 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/README.md +57 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/agent/agent.py +63 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/agent/prompts.py +15 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/agent/tools.py +40 -0
- trpc_agent_py-0.1.0/examples/team_human_in_the_loop/run_agent.py +170 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/README.md +109 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/agent/agent.py +74 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/agent/tools.py +23 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_claude/run_agent.py +106 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/README.md +53 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/agent/agent.py +106 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/agent/tools.py +38 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_langgraph/run_agent.py +97 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/README.md +53 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/agent/agent.py +106 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/agent/prompts.py +58 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/agent/tools.py +43 -0
- trpc_agent_py-0.1.0/examples/team_member_agent_team/run_agent.py +107 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/README.md +56 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/agent/agent.py +109 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/agent/prompts.py +23 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/agent/tools.py +56 -0
- trpc_agent_py-0.1.0/examples/team_member_message_filter/run_agent.py +94 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/README.md +54 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/agent/agent.py +92 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/agent/prompts.py +34 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/agent/tools.py +105 -0
- trpc_agent_py-0.1.0/examples/team_parallel_execution/run_agent.py +113 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/README.md +57 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/agent/__init__.py +6 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/agent/agent.py +85 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/agent/prompts.py +52 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/agent/tools.py +88 -0
- trpc_agent_py-0.1.0/examples/team_with_cancel/run_agent.py +318 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/.env +1 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/README.md +53 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/agent/agent.py +62 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/agent/prompts.py +41 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/agent/tools.py +92 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/run_agent.py +89 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/skills/leader_research/SKILL.md +32 -0
- trpc_agent_py-0.1.0/examples/team_with_skill/skills/leader_research/scripts/gather_points.sh +20 -0
- trpc_agent_py-0.1.0/examples/tools/.env +1 -0
- trpc_agent_py-0.1.0/examples/tools/README.md +131 -0
- trpc_agent_py-0.1.0/examples/tools/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/tools/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/tools/agent/agent.py +120 -0
- trpc_agent_py-0.1.0/examples/tools/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/tools/agent/function_tool.py +140 -0
- trpc_agent_py-0.1.0/examples/tools/agent/langchain_tool.py +49 -0
- trpc_agent_py-0.1.0/examples/tools/agent/prompts.py +32 -0
- trpc_agent_py-0.1.0/examples/tools/agent/toolset.py +121 -0
- trpc_agent_py-0.1.0/examples/tools/run_agent.py +283 -0
- trpc_agent_py-0.1.0/examples/toolsets/.env +1 -0
- trpc_agent_py-0.1.0/examples/toolsets/README.md +55 -0
- trpc_agent_py-0.1.0/examples/toolsets/agent/__init__.py +5 -0
- trpc_agent_py-0.1.0/examples/toolsets/agent/agent.py +39 -0
- trpc_agent_py-0.1.0/examples/toolsets/agent/config.py +19 -0
- trpc_agent_py-0.1.0/examples/toolsets/agent/prompts.py +9 -0
- trpc_agent_py-0.1.0/examples/toolsets/agent/tools.py +116 -0
- trpc_agent_py-0.1.0/examples/toolsets/run_agent.py +96 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/.env +1 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/README.md +118 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/agent/__init__.py +10 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/agent/agent.py +58 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/agent/config.py +25 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/agent/prompts.py +16 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/agent/tools.py +34 -0
- trpc_agent_py-0.1.0/examples/transfer_agent/run_agent.py +80 -0
- trpc_agent_py-0.1.0/format.py +1381 -0
- trpc_agent_py-0.1.0/format.sh +12 -0
- trpc_agent_py-0.1.0/pyproject.toml +190 -0
- trpc_agent_py-0.1.0/requirements-test.txt +16 -0
- trpc_agent_py-0.1.0/requirements.txt +50 -0
- trpc_agent_py-0.1.0/run_example.sh +4 -0
- trpc_agent_py-0.1.0/run_examples_from_streaming_tool_complex.py +233 -0
- trpc_agent_py-0.1.0/stop.sh +5 -0
- trpc_agent_py-0.1.0/tests/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/abc/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/abc/conftest.py +56 -0
- trpc_agent_py-0.1.0/tests/abc/test_agent.py +152 -0
- trpc_agent_py-0.1.0/tests/abc/test_artifact_service.py +147 -0
- trpc_agent_py-0.1.0/tests/abc/test_filter.py +162 -0
- trpc_agent_py-0.1.0/tests/abc/test_memory_service.py +117 -0
- trpc_agent_py-0.1.0/tests/abc/test_session.py +137 -0
- trpc_agent_py-0.1.0/tests/abc/test_toolset.py +164 -0
- trpc_agent_py-0.1.0/tests/agents/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/agents/core/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_agent_transfer_processor.py +257 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_code_execution_processor.py +82 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_history_processor.py +259 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_llm_processor.py +212 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_output_schema_processor.py +201 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_request_processor.py +315 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_request_processor_ext.py +662 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_skill_processor.py +660 -0
- trpc_agent_py-0.1.0/tests/agents/core/test_tools_processor.py +285 -0
- trpc_agent_py-0.1.0/tests/agents/test_base_agent.py +218 -0
- trpc_agent_py-0.1.0/tests/agents/test_callback.py +250 -0
- trpc_agent_py-0.1.0/tests/agents/test_chain_agent.py +154 -0
- trpc_agent_py-0.1.0/tests/agents/test_constants.py +59 -0
- trpc_agent_py-0.1.0/tests/agents/test_cycle_agent.py +189 -0
- trpc_agent_py-0.1.0/tests/agents/test_langgraph_agent.py +528 -0
- trpc_agent_py-0.1.0/tests/agents/test_llm_agent.py +332 -0
- trpc_agent_py-0.1.0/tests/agents/test_llm_agent_ext.py +413 -0
- trpc_agent_py-0.1.0/tests/agents/test_parallel_agent.py +180 -0
- trpc_agent_py-0.1.0/tests/agents/test_parallel_agent_ext.py +316 -0
- trpc_agent_py-0.1.0/tests/agents/test_transfer_agent.py +381 -0
- trpc_agent_py-0.1.0/tests/agents/utils/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/agents/utils/test_langgraph_event_writer.py +208 -0
- trpc_agent_py-0.1.0/tests/artifacts/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/artifacts/conftest.py +57 -0
- trpc_agent_py-0.1.0/tests/artifacts/test_in_memory_artifact_service.py +601 -0
- trpc_agent_py-0.1.0/tests/artifacts/test_utils.py +306 -0
- trpc_agent_py-0.1.0/tests/cancel/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/cancel/test_cancel.py +303 -0
- trpc_agent_py-0.1.0/tests/cancel/test_session_utils.py +346 -0
- trpc_agent_py-0.1.0/tests/code_executors/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/code_executors/container/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/code_executors/container/test_container_cli.py +454 -0
- trpc_agent_py-0.1.0/tests/code_executors/container/test_container_code_executor.py +331 -0
- trpc_agent_py-0.1.0/tests/code_executors/container/test_container_ws_runtime.py +1412 -0
- trpc_agent_py-0.1.0/tests/code_executors/local/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/code_executors/local/test_local_ws_runtime.py +970 -0
- trpc_agent_py-0.1.0/tests/code_executors/local/test_unsafe_local_code_executor.py +446 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_artifacts.py +259 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_base_code_executor.py +188 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_base_workspace_runtime.py +387 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_code_executor_context.py +217 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_constants.py +244 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_container_container_code_executor.py +231 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_local_unsafe_local_code_executor.py +271 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_types.py +541 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_utils_code_execution.py +257 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_utils_files.py +390 -0
- trpc_agent_py-0.1.0/tests/code_executors/test_utils_workspace.py +160 -0
- trpc_agent_py-0.1.0/tests/code_executors/utils/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/code_executors/utils/test_meta.py +569 -0
- trpc_agent_py-0.1.0/tests/common/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/common/test_compatible.py +355 -0
- trpc_agent_py-0.1.0/tests/common/test_init.py +35 -0
- trpc_agent_py-0.1.0/tests/configs/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/configs/test_run_config.py +313 -0
- trpc_agent_py-0.1.0/tests/context/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/context/test_agent_context.py +132 -0
- trpc_agent_py-0.1.0/tests/context/test_common.py +189 -0
- trpc_agent_py-0.1.0/tests/context/test_constants.py +16 -0
- trpc_agent_py-0.1.0/tests/context/test_invocation_context.py +403 -0
- trpc_agent_py-0.1.0/tests/evaluation/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_agent_evaluator.py +99 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_criterion_registry.py +78 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_callbacks.py +86 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_callbacks_ext.py +229 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_case.py +105 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_config.py +112 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_criterion.py +144 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_criterion_ext.py +250 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_metrics.py +98 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_pass.py +88 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_result.py +137 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_service_base.py +82 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_session_service.py +144 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_set.py +43 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_set_results_manager_utils.py +85 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_set_results_manager_utils_ext.py +250 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_eval_sets_manager_utils.py +134 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_evaluator_registry.py +76 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_final_response_evaluator.py +51 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_in_memory_eval_sets_manager.py +196 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_llm_criterion.py +185 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_llm_evaluator_registry.py +61 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_llm_judge.py +122 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_local_eval_sets_manager.py +168 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_rouge_evaluator.py +52 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_static_user_simulator.py +49 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_trajectory_evaluator.py +51 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_trajectory_evaluator_ext.py +138 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_user_simulator.py +63 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_user_simulator_provider.py +58 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_utils.py +260 -0
- trpc_agent_py-0.1.0/tests/evaluation/test_utils_ext.py +174 -0
- trpc_agent_py-0.1.0/tests/events/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/events/test_agent_cancelled_event.py +193 -0
- trpc_agent_py-0.1.0/tests/events/test_event.py +616 -0
- trpc_agent_py-0.1.0/tests/events/test_event_translator.py +189 -0
- trpc_agent_py-0.1.0/tests/events/test_long_running_event.py +235 -0
- trpc_agent_py-0.1.0/tests/events/test_utils.py +256 -0
- trpc_agent_py-0.1.0/tests/exceptions/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/exceptions/test_exceptions.py +314 -0
- trpc_agent_py-0.1.0/tests/file_tools/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_bash_tool.py +190 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_edit_tool.py +234 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_file_utils.py +126 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_glob_tool.py +176 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_grep_tool.py +238 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_read_tool.py +214 -0
- trpc_agent_py-0.1.0/tests/file_tools/test_write_tool.py +203 -0
- trpc_agent_py-0.1.0/tests/filter/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/filter/test_base_filter.py +565 -0
- trpc_agent_py-0.1.0/tests/filter/test_filter_runner.py +316 -0
- trpc_agent_py-0.1.0/tests/filter/test_registry.py +202 -0
- trpc_agent_py-0.1.0/tests/filter/test_run_filter.py +339 -0
- trpc_agent_py-0.1.0/tests/knowledge/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/knowledge/test_filter_expr.py +390 -0
- trpc_agent_py-0.1.0/tests/knowledge/test_knowledge.py +349 -0
- trpc_agent_py-0.1.0/tests/langfuse/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/langfuse/prompt/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/langfuse/prompt/test__manager.py +210 -0
- trpc_agent_py-0.1.0/tests/langfuse/tracing/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/langfuse/tracing/test_opentelemetry.py +1009 -0
- trpc_agent_py-0.1.0/tests/log/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/log/test_base_logger.py +159 -0
- trpc_agent_py-0.1.0/tests/log/test_default_logger.py +369 -0
- trpc_agent_py-0.1.0/tests/log/test_logger.py +346 -0
- trpc_agent_py-0.1.0/tests/memory/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/memory/test_in_memory_memory_service.py +417 -0
- trpc_agent_py-0.1.0/tests/memory/test_mem0_memory_service.py +695 -0
- trpc_agent_py-0.1.0/tests/memory/test_redis_memory_service.py +311 -0
- trpc_agent_py-0.1.0/tests/memory/test_sql_memory_service.py +514 -0
- trpc_agent_py-0.1.0/tests/memory/test_utils.py +103 -0
- trpc_agent_py-0.1.0/tests/models/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/models/test_anthropic_model.py +439 -0
- trpc_agent_py-0.1.0/tests/models/test_anthropic_model_ext.py +532 -0
- trpc_agent_py-0.1.0/tests/models/test_litellm_model.py +491 -0
- trpc_agent_py-0.1.0/tests/models/test_llm_request.py +221 -0
- trpc_agent_py-0.1.0/tests/models/test_llm_response.py +298 -0
- trpc_agent_py-0.1.0/tests/models/test_openai_model.py +611 -0
- trpc_agent_py-0.1.0/tests/models/test_openai_model_ext.py +1311 -0
- trpc_agent_py-0.1.0/tests/models/test_registry.py +270 -0
- trpc_agent_py-0.1.0/tests/models/test_tool_prompt.py +529 -0
- trpc_agent_py-0.1.0/tests/planners/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/planners/test__built_in_planner.py +159 -0
- trpc_agent_py-0.1.0/tests/planners/test__plan_re_act_planner.py +528 -0
- trpc_agent_py-0.1.0/tests/planners/test__planning_processor.py +390 -0
- trpc_agent_py-0.1.0/tests/server/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/a2a/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/a2a/converters/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/a2a/converters/test_event_converter.py +737 -0
- trpc_agent_py-0.1.0/tests/server/a2a/converters/test_part_converter.py +421 -0
- trpc_agent_py-0.1.0/tests/server/a2a/converters/test_request_converter.py +163 -0
- trpc_agent_py-0.1.0/tests/server/a2a/executor/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/a2a/executor/test_a2a_agent_executor.py +323 -0
- trpc_agent_py-0.1.0/tests/server/a2a/executor/test_task_result_aggregator.py +146 -0
- trpc_agent_py-0.1.0/tests/server/a2a/logs/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/a2a/logs/test_log_utils.py +260 -0
- trpc_agent_py-0.1.0/tests/server/a2a/test_agent_card_builder.py +562 -0
- trpc_agent_py-0.1.0/tests/server/a2a/test_agent_service.py +152 -0
- trpc_agent_py-0.1.0/tests/server/a2a/test_remote_a2a_agent.py +472 -0
- trpc_agent_py-0.1.0/tests/server/a2a/test_utils.py +92 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_agui_agent.py +1550 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_client_proxy_tool.py +370 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_client_proxy_toolset.py +230 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_converters.py +527 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_endpoint.py +190 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_event_translator.py +958 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_execution_state.py +198 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_feed_back_content.py +97 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_http_req.py +72 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_core/test_session_manager.py +1041 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/test_langgraph_event_translator.py +77 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/test_manager.py +145 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/test_registry.py +90 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/test_service.py +167 -0
- trpc_agent_py-0.1.0/tests/server/ag_ui/_plugin/test_utils.py +240 -0
- trpc_agent_py-0.1.0/tests/server/agents/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_claude_agent.py +1655 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_proxy.py +1175 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_proxy_logger.py +197 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_runtime.py +176 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_session_config.py +41 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_session_manager.py +562 -0
- trpc_agent_py-0.1.0/tests/server/agents/claude/test_setup.py +400 -0
- trpc_agent_py-0.1.0/tests/server/knowledge/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/server/knowledge/test_langchain_knowledge.py +756 -0
- trpc_agent_py-0.1.0/tests/server/knowledge/tools/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/server/knowledge/tools/test_langchain_knowledge_searchtool.py +438 -0
- trpc_agent_py-0.1.0/tests/sessions/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/sessions/test_base_session_service.py +301 -0
- trpc_agent_py-0.1.0/tests/sessions/test_history_record.py +127 -0
- trpc_agent_py-0.1.0/tests/sessions/test_in_memory_session_service.py +549 -0
- trpc_agent_py-0.1.0/tests/sessions/test_redis_session_service.py +305 -0
- trpc_agent_py-0.1.0/tests/sessions/test_session.py +360 -0
- trpc_agent_py-0.1.0/tests/sessions/test_session_summarizer.py +467 -0
- trpc_agent_py-0.1.0/tests/sessions/test_sql_session_service.py +400 -0
- trpc_agent_py-0.1.0/tests/sessions/test_summarizer_checker.py +275 -0
- trpc_agent_py-0.1.0/tests/sessions/test_summarizer_manager.py +298 -0
- trpc_agent_py-0.1.0/tests/sessions/test_types.py +121 -0
- trpc_agent_py-0.1.0/tests/sessions/test_utils.py +185 -0
- trpc_agent_py-0.1.0/tests/skills/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/skills/stager/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/skills/stager/test_base_stager.py +301 -0
- trpc_agent_py-0.1.0/tests/skills/stager/test_types.py +46 -0
- trpc_agent_py-0.1.0/tests/skills/stager/test_utils.py +28 -0
- trpc_agent_py-0.1.0/tests/skills/test_common.py +310 -0
- trpc_agent_py-0.1.0/tests/skills/test_dynamic_toolset.py +466 -0
- trpc_agent_py-0.1.0/tests/skills/test_registry.py +91 -0
- trpc_agent_py-0.1.0/tests/skills/test_repository.py +383 -0
- trpc_agent_py-0.1.0/tests/skills/test_run_tool.py +364 -0
- trpc_agent_py-0.1.0/tests/skills/test_tools.py +553 -0
- trpc_agent_py-0.1.0/tests/skills/test_toolset.py +74 -0
- trpc_agent_py-0.1.0/tests/skills/test_types.py +392 -0
- trpc_agent_py-0.1.0/tests/skills/test_url_root.py +636 -0
- trpc_agent_py-0.1.0/tests/skills/test_utils.py +200 -0
- trpc_agent_py-0.1.0/tests/skills/tools/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_copy_stager.py +141 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_exec.py +889 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_list.py +45 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_list_docs.py +68 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_list_tool.py +140 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_load.py +165 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_run.py +1052 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_select_docs.py +104 -0
- trpc_agent_py-0.1.0/tests/skills/tools/test_skill_select_tools.py +102 -0
- trpc_agent_py-0.1.0/tests/storage/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/storage/test_constants.py +32 -0
- trpc_agent_py-0.1.0/tests/storage/test_db.py +105 -0
- trpc_agent_py-0.1.0/tests/storage/test_redis.py +817 -0
- trpc_agent_py-0.1.0/tests/storage/test_sql.py +532 -0
- trpc_agent_py-0.1.0/tests/storage/test_sql_common.py +461 -0
- trpc_agent_py-0.1.0/tests/teams/__init__.py +6 -0
- trpc_agent_py-0.1.0/tests/teams/test_delegation_signal.py +248 -0
- trpc_agent_py-0.1.0/tests/teams/test_delegation_tools.py +209 -0
- trpc_agent_py-0.1.0/tests/teams/test_member_message_filter.py +306 -0
- trpc_agent_py-0.1.0/tests/teams/test_message_builder.py +523 -0
- trpc_agent_py-0.1.0/tests/teams/test_system_message.py +354 -0
- trpc_agent_py-0.1.0/tests/teams/test_team_agent.py +2481 -0
- trpc_agent_py-0.1.0/tests/teams/test_team_run_context.py +489 -0
- trpc_agent_py-0.1.0/tests/telemetry/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/telemetry/test__custom_trace.py +619 -0
- trpc_agent_py-0.1.0/tests/telemetry/test__trace.py +1104 -0
- trpc_agent_py-0.1.0/tests/test_cli.py +98 -0
- trpc_agent_py-0.1.0/tests/test_runner.py +793 -0
- trpc_agent_py-0.1.0/tests/test_version.py +14 -0
- trpc_agent_py-0.1.0/tests/tools/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/test_mcp_session_manager.py +545 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/test_mcp_tool.py +422 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/test_mcp_toolset.py +326 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/test_types.py +61 -0
- trpc_agent_py-0.1.0/tests/tools/mcp_tool/test_utils.py +162 -0
- trpc_agent_py-0.1.0/tests/tools/test_agent_tool.py +395 -0
- trpc_agent_py-0.1.0/tests/tools/test_base_tool.py +243 -0
- trpc_agent_py-0.1.0/tests/tools/test_constants.py +35 -0
- trpc_agent_py-0.1.0/tests/tools/test_context_var.py +57 -0
- trpc_agent_py-0.1.0/tests/tools/test_default_toolset.py +128 -0
- trpc_agent_py-0.1.0/tests/tools/test_file_utils.py +71 -0
- trpc_agent_py-0.1.0/tests/tools/test_function_tool.py +223 -0
- trpc_agent_py-0.1.0/tests/tools/test_load_memory_tool.py +103 -0
- trpc_agent_py-0.1.0/tests/tools/test_long_running_tool.py +57 -0
- trpc_agent_py-0.1.0/tests/tools/test_mem0_tool.py +151 -0
- trpc_agent_py-0.1.0/tests/tools/test_preload_memory_tool.py +152 -0
- trpc_agent_py-0.1.0/tests/tools/test_registry.py +184 -0
- trpc_agent_py-0.1.0/tests/tools/test_set_model_response_tool.py +118 -0
- trpc_agent_py-0.1.0/tests/tools/test_streaming_function_tool.py +122 -0
- trpc_agent_py-0.1.0/tests/tools/test_tool_adapter.py +179 -0
- trpc_agent_py-0.1.0/tests/tools/test_transfer_to_agent_tool.py +39 -0
- trpc_agent_py-0.1.0/tests/tools/utils/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/tools/utils/test_automatic_function_calling.py +163 -0
- trpc_agent_py-0.1.0/tests/tools/utils/test_function_parameter_parse.py +337 -0
- trpc_agent_py-0.1.0/tests/tools/utils/test_tool_utils.py +246 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/__init__.py +0 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/__init__.py +1 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_callbacks.py +116 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_constants.py +178 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_event_metadata.py +76 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_event_writer.py +184 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_events.py +322 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_events_constants.py +101 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_graph_agent.py +303 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_interrupt.py +24 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_memory_saver.py +313 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_action_agent.py +394 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_action_code.py +93 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_action_knowledge.py +137 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_action_llm.py +518 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_action_mcp.py +247 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_node_config.py +62 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_state.py +157 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_state_graph.py +606 -0
- trpc_agent_py-0.1.0/tests/trpc_agent_dsl/graph/test_state_mapper.py +92 -0
- trpc_agent_py-0.1.0/tests/types/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/types/test_agent_types.py +164 -0
- trpc_agent_py-0.1.0/tests/types/test_event_actions.py +124 -0
- trpc_agent_py-0.1.0/tests/types/test_instruction.py +127 -0
- trpc_agent_py-0.1.0/tests/types/test_memory.py +106 -0
- trpc_agent_py-0.1.0/tests/types/test_state.py +213 -0
- trpc_agent_py-0.1.0/tests/types/test_ttl.py +242 -0
- trpc_agent_py-0.1.0/tests/utils/__init__.py +5 -0
- trpc_agent_py-0.1.0/tests/utils/test_address_info.py +173 -0
- trpc_agent_py-0.1.0/tests/utils/test_context_utils.py +120 -0
- trpc_agent_py-0.1.0/tests/utils/test_execute_cmd.py +150 -0
- trpc_agent_py-0.1.0/tests/utils/test_hash_key.py +53 -0
- trpc_agent_py-0.1.0/tests/utils/test_init.py +47 -0
- trpc_agent_py-0.1.0/tests/utils/test_registry_factory.py +181 -0
- trpc_agent_py-0.1.0/tests/utils/test_registry_factory_ext.py +86 -0
- trpc_agent_py-0.1.0/tests/utils/test_singleton.py +232 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/__init__.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/_cli.py +229 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/__init__.py +64 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_agent.py +187 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_artifact_service.py +202 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_filter.py +232 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_memory_service.py +90 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_planner.py +91 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_request.py +93 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_response.py +122 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_session.py +63 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_session_service.py +127 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_tool.py +96 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/abc/_toolset.py +134 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/__init__.py +78 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_base_agent.py +287 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_callback.py +321 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_chain_agent.py +62 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_constants.py +45 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_cycle_agent.py +78 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_langgraph_agent.py +823 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_llm_agent.py +725 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_parallel_agent.py +212 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/_transfer_agent.py +162 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/__init__.py +44 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_agent_transfer_processor.py +211 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_code_execution_processor.py +425 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_history_processor.py +358 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_llm_processor.py +210 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_output_schema_processor.py +106 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_request_processor.py +938 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_skill_processor.py +625 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/core/_tools_processor.py +483 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/utils/__init__.py +44 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/utils/_langgraph.py +354 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/agents/utils/_langgraph_event_writer.py +232 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/artifacts/__init__.py +34 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/artifacts/_in_memory_artifact_service.py +197 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/artifacts/_utils.py +161 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/cancel/__init__.py +28 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/cancel/_cancel.py +226 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/cancel/_session_utils.py +109 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/__init__.py +156 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_artifacts.py +135 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_base_code_executor.py +107 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_base_workspace_runtime.py +272 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_code_executor_context.py +147 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_constants.py +56 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/_types.py +328 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/container/__init__.py +33 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/container/_container_cli.py +222 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/container/_container_code_executor.py +161 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/container/_container_ws_runtime.py +841 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/local/__init__.py +25 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/local/_local_ws_runtime.py +686 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/local/_unsafe_local_code_executor.py +222 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/utils/__init__.py +52 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/utils/_code_execution.py +244 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/utils/_files.py +276 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/utils/_meta.py +268 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/code_executors/utils/_workspace.py +167 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/common/__init__.py +18 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/common/_compatible.py +84 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/common/_constants.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/configs/__init__.py +12 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/configs/_run_config.py +86 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/context/__init__.py +51 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/context/_agent_context.py +71 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/context/_common.py +66 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/context/_constants.py +8 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/context/_invocation_context.py +348 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/__init__.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/__init__.py +172 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_callbacks.py +239 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_constants.py +194 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_event_writer.py +389 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_events/__init__.py +44 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_events/_builder.py +518 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_events/_constants.py +78 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_events/_helpers.py +154 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_events/_metadata.py +252 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_graph_agent.py +514 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_interrupt.py +28 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_memory_saver.py +514 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/__init__.py +26 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_agent.py +364 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_base.py +75 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_code.py +63 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_knowledge.py +117 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_llm.py +519 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_action/_mcp.py +98 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_node_config.py +53 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_state.py +420 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_state_graph.py +817 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/dsl/graph/_state_mapper.py +254 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/__init__.py +302 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_agent_evaluator.py +778 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_common.py +39 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_criterion_registry.py +111 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_callbacks.py +416 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_case.py +273 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_config.py +109 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_criterion.py +469 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_metrics.py +131 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_pass.py +53 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_result.py +285 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_service_base.py +225 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_session_service.py +95 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_set.py +61 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_set_results_manager_base.py +81 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_set_results_manager_utils.py +258 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_sets_manager_base.py +126 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_eval_sets_manager_utils.py +102 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_evaluator_base.py +57 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_evaluator_registry.py +108 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_final_response_evaluator.py +93 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_in_memory_eval_sets_manager.py +221 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_llm_criterion.py +171 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_llm_evaluator.py +223 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_llm_judge.py +855 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_local_eval_service.py +754 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_local_eval_set_results_manager.py +161 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_local_eval_sets_manager.py +251 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_rouge_evaluator.py +171 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_static_user_simulator.py +83 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_trajectory_evaluator.py +147 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_user_simulator_base.py +119 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_user_simulator_provider.py +71 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/evaluation/_utils.py +367 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/__init__.py +23 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/_agent_cancelled_event.py +60 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/_event.py +246 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/_event_translator.py +67 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/_long_running_event.py +36 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/events/_utils.py +49 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/exceptions/__init__.py +24 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/exceptions/_exceptions.py +60 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/filter/__init__.py +58 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/filter/_base_filter.py +239 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/filter/_filter_runner.py +128 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/filter/_registry.py +176 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/filter/_run_filter.py +106 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/knowledge/__init__.py +22 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/knowledge/_filter_expr.py +106 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/knowledge/_knowledge.py +90 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/log/__init__.py +44 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/log/_base_logger.py +124 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/log/_default_logger.py +228 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/log/_logger.py +189 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/__init__.py +36 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/_in_memory_memory_service.py +214 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/_redis_memory_service.py +116 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/_sql_memory_service.py +341 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/_utils.py +28 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/memory/mem0_memory_service.py +436 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/__init__.py +90 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_anthropic_model.py +774 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_constants.py +93 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_litellm_model.py +423 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_llm_model.py +131 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_llm_request.py +125 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_llm_response.py +94 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_openai_model.py +1679 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/_registry.py +136 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/tool_prompt/__init__.py +26 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/tool_prompt/_base.py +52 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/tool_prompt/_factory.py +86 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/tool_prompt/_json.py +222 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/models/tool_prompt/_xml.py +223 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/planners/__init__.py +30 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/planners/_built_in_planner.py +127 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/planners/_plan_re_act_planner.py +321 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/planners/_planning_processor.py +176 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/runners.py +633 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/__init__.py +10 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/README.md +172 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/__init__.py +25 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/_agent_card_builder.py +485 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/_agent_service.py +150 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/_constants.py +101 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/_remote_a2a_agent.py +430 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/_utils.py +53 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/converters/__init__.py +65 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/converters/_event_converter.py +697 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/converters/_part_converter.py +321 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/converters/_request_converter.py +111 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/executor/__init__.py +31 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/executor/_a2a_agent_executor.py +337 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/executor/_task_result_aggregator.py +72 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/logs/__init__.py +31 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/a2a/logs/_log_utils.py +325 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/README.md +131 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/__init__.py +22 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/__init__.py +63 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_agui_agent.py +1270 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_client_proxy_tool.py +153 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_client_proxy_toolset.py +89 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_converters.py +350 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_endpoint.py +114 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_event_translator.py +739 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_execution_state.py +134 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_feed_back_content.py +61 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_http_req.py +28 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_core/_session_manager.py +612 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/__init__.py +24 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/_langgraph_event_translator.py +65 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/_manager.py +87 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/_registry.py +42 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/_service.py +148 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/ag_ui/_plugin/_utils.py +80 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/__init__.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/__init__.py +75 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_claude_agent.py +1241 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_proxy.py +956 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_proxy_logger.py +99 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_runtime.py +81 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_session_config.py +22 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_session_manager.py +451 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/agents/claude/_setup.py +417 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/knowledge/__init__.py +9 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/knowledge/langchain_knowledge.py +314 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/knowledge/tools/__init__.py +14 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/knowledge/tools/langchain_knowledge_searchtool.py +207 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/langfuse/__init__.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/langfuse/prompt/__init__.py +14 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/langfuse/prompt/_manager.py +97 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/langfuse/tracing/__init__.py +6 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/langfuse/tracing/opentelemetry.py +657 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/README.md +403 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/__init__.py +5 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/_cli.py +237 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/_logger.py +76 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/_utils.py +153 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/agent/__init__.py +18 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/agent/_agent.py +221 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/agent/_prompts.py +137 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/channels/__init__.py +22 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/channels/_command_handler.py +181 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/channels/_repair.py +30 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/channels/_telegram.py +67 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/channels/_wecom.py +96 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/claw.py +774 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/config/__init__.py +70 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/config/_config.py +364 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/config/_constants.py +48 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/config.temp.yaml +27 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/config_full.temp.yaml +169 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/image/telegram.png +0 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/image/wecom.png +0 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/metrics/__init__.py +14 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/metrics/_langfuse.py +37 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/metrics/_metrics.py +51 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/service/__init__.py +13 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/service/_heart_service.py +148 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/session_memory/__init__.py +16 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/session_memory/_claw_memory_service.py +73 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/session_memory/_claw_session_service.py +212 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/session_memory/_claw_summarizer.py +622 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/__init__.py +22 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/_deps.py +691 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/_skill_loader.py +607 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/_skill_parser.py +239 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/_skill_tool.py +124 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/skill/_utils.py +173 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/storage/__init__.py +43 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/storage/_aiofile_storage.py +218 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/storage/_constants.py +26 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/storage/_manager.py +381 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/storage/_utils.py +73 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/templates/ui.html +684 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/__init__.py +32 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/cron.py +229 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/filesystem.py +488 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/mcp_tool.py +91 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/message.py +146 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/shell.py +222 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/spawn_task.py +121 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/tools/web.py +464 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/server/openclaw/ui.py +663 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/__init__.py +83 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_base_session_service.py +186 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_history_record.py +57 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_in_memory_session_service.py +552 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_redis_session_service.py +414 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_session.py +110 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_session_summarizer.py +436 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_sql_session_service.py +706 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_summarizer_checker.py +154 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_summarizer_manager.py +172 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_types.py +51 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/sessions/_utils.py +116 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/__init__.py +140 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_common.py +356 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_constants.py +38 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_dynamic_toolset.py +391 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_registry.py +106 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_repository.py +412 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_toolset.py +118 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_types.py +301 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_url_root.py +844 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/_utils.py +196 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/stager/__init__.py +23 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/stager/_base_stager.py +336 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/stager/_types.py +55 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/stager/_utils.py +18 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/__init__.py +64 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_copy_stager.py +125 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_exec.py +973 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_list.py +32 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_list_docs.py +39 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_list_tool.py +91 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_load.py +76 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_run.py +1200 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_select_docs.py +63 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/skills/tools/_skill_select_tools.py +83 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/__init__.py +58 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/_constants.py +12 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/_db.py +45 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/_redis.py +310 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/_sql.py +239 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/storage/_sql_common.py +238 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/__init__.py +18 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/_team_agent.py +1032 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/__init__.py +42 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_delegation_signal.py +125 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_delegation_tools.py +65 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_member_message_filter.py +93 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_message_builder.py +309 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_system_message.py +101 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/teams/core/_team_run_context.py +298 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/telemetry/__init__.py +30 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/telemetry/_custom_trace.py +266 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/telemetry/_trace.py +459 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/__init__.py +113 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_agent_tool.py +212 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_base_tool.py +216 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_constants.py +27 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_context_var.py +30 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_default_toolset.py +123 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_function_tool.py +190 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_load_memory_tool.py +101 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_long_running_tool.py +68 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_preload_memory_tool.py +89 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_registry.py +304 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_set_model_response_tool.py +114 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_streaming_function_tool.py +146 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_tool_adapter.py +109 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/_transfer_to_agent_tool.py +34 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/__init__.py +44 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_bash_tool.py +219 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_edit_tool.py +464 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_file_toolset.py +53 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_file_utils.py +99 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_glob_tool.py +162 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_grep_tool.py +227 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_read_tool.py +183 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/file_tools/_write_tool.py +137 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/__init__.py +46 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/_mcp_session_manager.py +284 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/_mcp_tool.py +225 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/_mcp_toolset.py +192 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/_types.py +37 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mcp_tool/_utils.py +83 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/mem0_tool.py +113 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/utils/__init__.py +41 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/utils/_automatic_function_calling.py +161 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/utils/_function_parameter_parse.py +345 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/tools/utils/_tool_utils.py +159 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/__init__.py +40 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_agent_types.py +75 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_event_actions.py +63 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_instruction.py +60 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_memory.py +40 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_state.py +82 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/types/_ttl.py +72 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/__init__.py +30 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/_context_utils.py +32 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/_execute_cmd.py +88 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/_hash_key.py +11 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/_registry_factory.py +176 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/utils/_singleton.py +80 -0
- trpc_agent_py-0.1.0/trpc_agent_sdk/version.py +12 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[run]
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
.idea
|
|
2
|
+
.vscode
|
|
3
|
+
.DS_Store
|
|
4
|
+
*.lock
|
|
5
|
+
*.log
|
|
6
|
+
examples/*.log
|
|
7
|
+
|
|
8
|
+
trpc-agent-py.egg-info
|
|
9
|
+
|
|
10
|
+
build
|
|
11
|
+
dist
|
|
12
|
+
.venv
|
|
13
|
+
venv
|
|
14
|
+
venv*
|
|
15
|
+
__pycache__
|
|
16
|
+
|
|
17
|
+
.coverage
|
|
18
|
+
htmlcov
|
|
19
|
+
cov.tmp
|
|
20
|
+
coverage.xml
|
|
21
|
+
test-ngtest-ut-trpc-agent-py.xml
|
|
22
|
+
.pytest_cache
|
|
23
|
+
|
|
24
|
+
node_modules
|
|
25
|
+
package-lock.json
|
|
26
|
+
pyrightconfig.json
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [0.1.0](https://github.com/trpc-group/trpc-agent-python/releases/tag/v0.1.0) (2026-04-06)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Unified Agent framework with `LlmAgent`, `LangGraphAgent` and `TransferAgent`
|
|
8
|
+
* Multi-agent orchestration with built-in `Chain`, `Parallel`, and `Cycle` patterns, plus Team and nested Team collaboration
|
|
9
|
+
* Human-in-the-loop workflows with pause, review, and resume support for long-running tasks
|
|
10
|
+
* Rich tool ecosystem including built-in file/shell tools, MCP tools, LangChain tools, and extensible third-party integrations
|
|
11
|
+
* Extensible Skill system with local and HTTP distribution, dynamic loading, timeout control, and sandbox execution
|
|
12
|
+
* Code execution support with async runtime and sandbox/container execution options
|
|
13
|
+
* Session and memory services with in-memory, Redis, and SQL backends, including filtering, summarization, and scheduled cleanup
|
|
14
|
+
* RAG and knowledge capabilities through `LangchainKnowledge` with loaders, splitters, embedders, vector stores, retrievers, and prompt templates
|
|
15
|
+
* Evaluation framework with trajectory and response quality assessment, LLM-judge metrics, parallel evaluation, and JSON reporting
|
|
16
|
+
* Service and protocol integrations for A2A, AG-UI, and OpenClaw runtime scenarios
|
|
17
|
+
* OpenClaw runtime capabilities for gateway/chat/ui/deps workflows with pluggable channels, tools, skills, session and memory integration
|
|
18
|
+
* OpenClaw skill dependency management with profile-based inspection and install planning for common runtime environments
|
|
19
|
+
* Observability via tracing support, including end-to-end execution flow, tool-call traces, and cancellation traces
|
|
20
|
+
* Developer experience support with practical examples and DebugServer for local development and validation
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
# Community Code of Conduct
|
|
2
|
+
|
|
3
|
+
Welcome to our open source project!
|
|
4
|
+
|
|
5
|
+
We are committed to creating a friendly, respectful, and inclusive community.
|
|
6
|
+
To ensure a positive experience in our project, we have established the following code of conduct, which we require all participants to abide by, and provide a safe and inclusive environment for all community members.
|
|
7
|
+
|
|
8
|
+
## Our Pledge
|
|
9
|
+
|
|
10
|
+
As participants, contributors, and maintainers of our community, we pledge to:
|
|
11
|
+
- Treat everyone with openness, inclusivity, and collaboration;
|
|
12
|
+
- Respect individuals with different backgrounds and viewpoints, regardless of gender, sexual orientation, disability, race, ethnicity, religion, age, or any other factor;
|
|
13
|
+
- Focus on contributing and improving the project, rather than attacking or criticizing individuals;
|
|
14
|
+
- Build trust with community members and promote our project through constructive feedback;
|
|
15
|
+
- Provide a safe, supportive, and encouraging environment for community members to promote learning and personal growth.
|
|
16
|
+
|
|
17
|
+
## Our standards
|
|
18
|
+
|
|
19
|
+
Our community members should adhere to the following standards:
|
|
20
|
+
- Respect the opinions, viewpoints, and experiences of others;
|
|
21
|
+
- Avoid using insulting, discriminatory, or harmful language;
|
|
22
|
+
- Do not harass, intimidate, or threaten others;
|
|
23
|
+
- Do not publicly or privately disclose others' private information, such as contact information or addresses;
|
|
24
|
+
- Respect the privacy of others;
|
|
25
|
+
- Establish a safe, inclusive, and respectful environment for community members.
|
|
26
|
+
|
|
27
|
+
## Our responsibility
|
|
28
|
+
|
|
29
|
+
Project maintainers have a responsibility to create a friendly, respectful, and inclusive environment for our community members.
|
|
30
|
+
They should:
|
|
31
|
+
- Clearly and publicly explain the community guidelines;
|
|
32
|
+
- Handle reports of guideline violations and resolve disputes appropriately;
|
|
33
|
+
- Protect the privacy and security of all community members;
|
|
34
|
+
- Maintain a fair, transparent, and responsible attitude.
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## Scope
|
|
38
|
+
|
|
39
|
+
This code of conduct applies to all project spaces, including GitHub, mailing lists, forums, social media, gatherings, and conferences.
|
|
40
|
+
Violations of the code of conduct will be dealt with, including but not limited to warnings, temporary or permanent bans, revocation of contribution rights, and revocation of project access rights.
|
|
41
|
+
|
|
42
|
+
## Implementation guidelines
|
|
43
|
+
|
|
44
|
+
If you encounter behavior that violates this code of conduct, you can:
|
|
45
|
+
- Communicate privately with the relevant person to try to resolve the issue;
|
|
46
|
+
- Report the violation to the project maintainers(maintainer mailing list), who will take necessary action based on the situation;
|
|
47
|
+
- If you are not satisfied with the way the maintainers handle the situation, you can seek help from higher-level organizations or institutions.
|
|
48
|
+
|
|
49
|
+
Our community is a diverse, open, and inclusive community, and we welcome everyone's participation and contribution.
|
|
50
|
+
We believe that only in a safe, respectful, and inclusive environment can we create the best project together.
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
# How to Contribute
|
|
2
|
+
|
|
3
|
+
Thank you for your interest and support in tRPC-Agent-Python!
|
|
4
|
+
|
|
5
|
+
We welcome and appreciate any form of contribution, including but not limited to submitting issues, providing improvement suggestions, improving documentation, fixing bugs, and adding features.
|
|
6
|
+
This document aims to provide you with a detailed contribution guide to help you better participate in the project.
|
|
7
|
+
Please read this guide carefully before contributing and make sure to follow the rules here.
|
|
8
|
+
We look forward to working with you to make this project better together!
|
|
9
|
+
|
|
10
|
+
## Before contributing code
|
|
11
|
+
|
|
12
|
+
The project welcomes code patches, but to make sure things are well coordinated you should discuss any significant change before starting the work.
|
|
13
|
+
It's recommended that you signal your intention to contribute in the issue tracker, either by claiming an [existing one](https://github.com/trpc-group/trpc-agent-python/issues) or by [opening a new issue](https://github.com/trpc-group/trpc-agent-python/issues/new).
|
|
14
|
+
|
|
15
|
+
### Checking the issue tracker
|
|
16
|
+
|
|
17
|
+
Whether you already know what contribution to make, or you are searching for an idea, the [issue tracker](https://github.com/trpc-group/trpc-agent-python/issues) is always the first place to go.
|
|
18
|
+
Issues are triaged to categorize them and manage the workflow.
|
|
19
|
+
|
|
20
|
+
Most issues will be marked with one of the following workflow labels:
|
|
21
|
+
- **NeedsInvestigation**: The issue is not fully understood and requires analysis to understand the root cause.
|
|
22
|
+
- **NeedsDecision**: The issue is relatively well understood, but the tRPC-Agent-Python team hasn't yet decided the best way to address it.
|
|
23
|
+
It would be better to wait for a decision before writing code.
|
|
24
|
+
If you are interested in working on an issue in this state, feel free to "ping" maintainers in the issue's comments if some time has passed without a decision.
|
|
25
|
+
- **NeedsFix**: The issue is fully understood and code can be written to fix it.
|
|
26
|
+
|
|
27
|
+
### Opening an issue for any new problem
|
|
28
|
+
|
|
29
|
+
Excluding very trivial changes, all contributions should be connected to an existing issue.
|
|
30
|
+
Feel free to open one and discuss your plans.
|
|
31
|
+
This process gives everyone a chance to validate the design, helps prevent duplication of effort, and ensures that the idea fits inside the goals for the language and tools.
|
|
32
|
+
It also checks that the design is sound before code is written; the code review tool is not the place for high-level discussions.
|
|
33
|
+
|
|
34
|
+
When opening an issue, make sure to answer these five questions:
|
|
35
|
+
1. What version of tRPC-Agent-Python are you using?
|
|
36
|
+
2. What operating system and Python version are you using (`python -V`)?
|
|
37
|
+
3. What did you do?
|
|
38
|
+
4. What did you expect to see?
|
|
39
|
+
5. What did you see instead?
|
|
40
|
+
|
|
41
|
+
For change proposals, see Proposing Changes To [tRPC-Proposals](https://github.com/trpc-group/trpc/tree/main/proposal).
|
|
42
|
+
|
|
43
|
+
## Contributing code
|
|
44
|
+
|
|
45
|
+
Follow the [GitHub flow](https://docs.github.com/en/get-started/quickstart/github-flow) to [create a GitHub pull request](https://docs.github.com/en/get-started/quickstart/github-flow#create-a-pull-request).
|
|
46
|
+
If this is your first time submitting a PR to the tRPC-Agent-Python project, you will be reminded in the "Conversation" tab of the PR to sign and submit the [Contributor License Agreement](https://github.com/trpc-group/cla-database/blob/main/Tencent-Contributor-License-Agreement.md).
|
|
47
|
+
Only when you have signed the Contributor License Agreement, your submitted PR has the possibility of being accepted.
|
|
48
|
+
|
|
49
|
+
Some things to keep in mind:
|
|
50
|
+
- Ensure that your code conforms to the project's code specifications.
|
|
51
|
+
This includes but is not limited to code style, comment specifications, etc. This helps us to maintain the cleanliness and consistency of the project.
|
|
52
|
+
- Before submitting a PR, please make sure that you have tested your code locally (`pytest`).
|
|
53
|
+
Ensure that the code has no obvious errors and can run normally.
|
|
54
|
+
- To update the pull request with new code, just push it to the branch;
|
|
55
|
+
you can either add more commits, or rebase and force-push (both styles are accepted).
|
|
56
|
+
- If the request is accepted, all commits will be squashed, and the final commit description will be composed by concatenating the pull request's title and description.
|
|
57
|
+
The individual commits' descriptions will be discarded.
|
|
58
|
+
See following "Write good commit messages" for some suggestions.
|
|
59
|
+
|
|
60
|
+
### Writing good commit messages
|
|
61
|
+
|
|
62
|
+
Commit messages in tRPC-Agent-Python follow a specific set of conventions, which we discuss in this section.
|
|
63
|
+
|
|
64
|
+
Here is an example of a good one:
|
|
65
|
+
|
|
66
|
+
> agent: improve streaming tool event handling stability
|
|
67
|
+
>
|
|
68
|
+
> The existing implementation may produce inconsistent event ordering
|
|
69
|
+
> in rare network conditions, so we improve buffering and flush behavior
|
|
70
|
+
> to ensure deterministic output sequence.
|
|
71
|
+
>
|
|
72
|
+
> Fixes #159
|
|
73
|
+
>
|
|
74
|
+
> RELEASE NOTES: Improved stability of streaming tool event handling.
|
|
75
|
+
|
|
76
|
+
#### First line
|
|
77
|
+
|
|
78
|
+
The first line of the change description is conventionally a short one-line summary of the change, prefixed by the primary affected package.
|
|
79
|
+
|
|
80
|
+
A rule of thumb is that it should be written so to complete the sentence "This change modifies tRPC-Agent-Python to _____."
|
|
81
|
+
That means it does not start with a capital letter, is not a complete sentence, and actually summarizes the result of the change.
|
|
82
|
+
|
|
83
|
+
Follow the first line by a blank line.
|
|
84
|
+
|
|
85
|
+
#### Main content
|
|
86
|
+
|
|
87
|
+
The rest of the description elaborates and should provide context for the change and explain what it does.
|
|
88
|
+
Write in complete sentences with correct punctuation, just like for your comments in tRPC-Agent-Python.
|
|
89
|
+
Don't use HTML, Markdown, or any other markup language.
|
|
90
|
+
Add any relevant information, such as benchmark data if the change affects performance.
|
|
91
|
+
|
|
92
|
+
#### Referencing issues
|
|
93
|
+
|
|
94
|
+
The special notation "Fixes #12345" associates the change with issue 12345 in the tRPC-Agent-Python issue tracker.
|
|
95
|
+
When this change is eventually applied, the issue tracker will automatically mark the issue as fixed.
|
|
96
|
+
|
|
97
|
+
- If there is a corresponding issue, add either `Fixes #12345` or `Updates #12345` (the latter if this is not a complete fix) to this comment.
|
|
98
|
+
- If referring to a repo other than `trpc-agent-python`, you can use the `owner/repo#issue_number` syntax: `Fixes trpc-group/tnet#12345`.
|
|
99
|
+
|
|
100
|
+
#### PR type label
|
|
101
|
+
|
|
102
|
+
The PR type label is used to help identify the types of changes going into the release over time. This may allow the Release Team to develop a better understanding of what sorts of issues we would miss with a faster release cadence.
|
|
103
|
+
|
|
104
|
+
For all pull requests, one of the following PR type labels must be set:
|
|
105
|
+
|
|
106
|
+
- type/bug: Fixes a newly discovered bug.
|
|
107
|
+
- type/enhancement: Adding tests, refactoring.
|
|
108
|
+
- type/feature: New functionality.
|
|
109
|
+
- type/documentation: Adds documentation.
|
|
110
|
+
- type/api-change: Adds, removes, or changes an API.
|
|
111
|
+
- type/failing-test: CI test case is showing intermittent failures.
|
|
112
|
+
- type/performance: Changes that improves performance.
|
|
113
|
+
- type/ci: Changes the CI configuration files and scripts.
|
|
114
|
+
|
|
115
|
+
#### Release notes
|
|
116
|
+
|
|
117
|
+
Release notes are required for any pull request with user-visible changes, this could mean:
|
|
118
|
+
|
|
119
|
+
- User facing, critical bug-fixes
|
|
120
|
+
- Notable feature additions
|
|
121
|
+
- Deprecations or removals
|
|
122
|
+
- API changes
|
|
123
|
+
- Documents additions
|
|
124
|
+
|
|
125
|
+
If the current PR doesn't have user-visible changes, such as internal code refactoring or adding test cases, the release notes should be filled with "NONE" and the changes in this PR will not be recorded in the next version's CHANGELOG. If the current PR has user-visible changes, the release notes should be filled out according to the actual situation, avoiding technical details and describing the impact of the current changes from a user's perspective as much as possible.
|
|
126
|
+
|
|
127
|
+
Release notes are one of the most important reference points for users about to import or upgrade to a particular release of tRPC-Agent-Python.
|
|
128
|
+
|
|
129
|
+
## Miscellaneous topics
|
|
130
|
+
|
|
131
|
+
### Copyright headers
|
|
132
|
+
|
|
133
|
+
Files in the tRPC-Agent-Python repository don't list author names, both to avoid clutter and to avoid having to keep the lists up to date.
|
|
134
|
+
Instead, your name will appear in the change log.
|
|
135
|
+
|
|
136
|
+
New files that you contribute should use the standard copyright header:
|
|
137
|
+
|
|
138
|
+
```python
|
|
139
|
+
#
|
|
140
|
+
# Tencent is pleased to support the open source community by making trpc-agent-python available.
|
|
141
|
+
#
|
|
142
|
+
# Copyright (C) 2025 Tencent. All rights reserved.
|
|
143
|
+
#
|
|
144
|
+
# trpc-agent-python is licensed under the Apache License Version 2.0.
|
|
145
|
+
#
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
Files in the repository are copyrighted the year they are added.
|
|
149
|
+
Do not update the copyright year on files that you change.
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
Tencent is pleased to support the open source community by making tRPC-Agent-Python available.
|
|
2
|
+
|
|
3
|
+
Copyright (C) 2026 Tencent. All rights reserved.
|
|
4
|
+
|
|
5
|
+
tRPC-Agent-Python is licensed under Apache-2.0, except for the third-party components listed below, which remain licensed under their respective original terms. tRPC-Agent-Python does not impose any additional restrictions beyond those specified in the original licenses of these third-party components. Users are required to comply with all applicable terms and conditions of the original licenses and to ensure that the use of these third-party components conforms to all relevant laws and regulations.
|
|
6
|
+
|
|
7
|
+
In case you believe there have been errors in the attribution below, you may submit the concerns to us for review and correction.
|
|
8
|
+
|
|
9
|
+
Terms of the Apache-2.0 License:
|
|
10
|
+
--------------------------------------------------------------------
|
|
11
|
+
Apache License
|
|
12
|
+
Version 2.0, January 2004
|
|
13
|
+
http://www.apache.org/licenses/
|
|
14
|
+
|
|
15
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
16
|
+
|
|
17
|
+
1. Definitions.
|
|
18
|
+
|
|
19
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
20
|
+
|
|
21
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
22
|
+
|
|
23
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
24
|
+
|
|
25
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
28
|
+
|
|
29
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
30
|
+
|
|
31
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
32
|
+
|
|
33
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
34
|
+
|
|
35
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
36
|
+
|
|
37
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
38
|
+
|
|
39
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
40
|
+
|
|
41
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
42
|
+
|
|
43
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
44
|
+
|
|
45
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
46
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
47
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
48
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
|
|
49
|
+
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
50
|
+
|
|
51
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
52
|
+
|
|
53
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
54
|
+
|
|
55
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
56
|
+
|
|
57
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
58
|
+
|
|
59
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
60
|
+
|
|
61
|
+
END OF TERMS AND CONDITIONS
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
Dependencies and Licenses:
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
The below software in this distribution may have been modified by Tencent ("Tencent Modifications"). All Tencent Modifications
|
|
70
|
+
are Copyright(C)Tencent.
|
|
71
|
+
|
|
72
|
+
Open Source Software Licensed under the Apache-2.0:
|
|
73
|
+
--------------------------------------------------------------------
|
|
74
|
+
1. adk
|
|
75
|
+
Copyright 2025 Google LLC
|
|
76
|
+
|
|
77
|
+
2. agno
|
|
78
|
+
Copyright 2025-2026 Agno Inc.
|
|
79
|
+
|
|
80
|
+
--------------------------------------------------------------------
|
|
81
|
+
Apache License
|
|
82
|
+
Version 2.0, January 2004
|
|
83
|
+
http://www.apache.org/licenses/
|
|
84
|
+
|
|
85
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
86
|
+
|
|
87
|
+
1. Definitions.
|
|
88
|
+
|
|
89
|
+
"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
|
|
90
|
+
|
|
91
|
+
"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
|
|
92
|
+
|
|
93
|
+
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
|
|
94
|
+
|
|
95
|
+
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
|
|
96
|
+
|
|
97
|
+
"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
|
|
98
|
+
|
|
99
|
+
"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
|
|
100
|
+
|
|
101
|
+
"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
|
|
102
|
+
|
|
103
|
+
"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
|
|
104
|
+
|
|
105
|
+
"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
|
|
106
|
+
|
|
107
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
|
|
108
|
+
|
|
109
|
+
2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
|
|
110
|
+
|
|
111
|
+
3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
|
|
112
|
+
|
|
113
|
+
4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
|
|
114
|
+
|
|
115
|
+
You must give any other recipients of the Work or Derivative Works a copy of this License; and
|
|
116
|
+
You must cause any modified files to carry prominent notices stating that You changed the files; and
|
|
117
|
+
You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
|
|
118
|
+
If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
|
|
119
|
+
You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
|
|
120
|
+
|
|
121
|
+
5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
|
|
122
|
+
|
|
123
|
+
6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
|
|
124
|
+
|
|
125
|
+
7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
|
|
126
|
+
|
|
127
|
+
8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
|
|
128
|
+
|
|
129
|
+
9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
|
|
130
|
+
|
|
131
|
+
END OF TERMS AND CONDITIONS
|
|
132
|
+
|
|
133
|
+
==================================================
|
|
134
|
+
End of the Attribution Notice of this project.
|
|
135
|
+
|