├── LICENSE ├── README.md ├── README_ZH.md ├── backend ├── A2AServer │ ├── README.md │ ├── pyproject.toml │ └── src │ │ ├── A2AServer.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── requires.txt │ │ └── top_level.txt │ │ └── A2AServer │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── common │ │ ├── A2Atypes.py │ │ ├── __init__.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ ├── card_resolver.py │ │ │ └── client.py │ │ ├── server │ │ │ ├── __init__.py │ │ │ ├── server.py │ │ │ ├── task_manager.py │ │ │ └── utils.py │ │ └── utils │ │ │ ├── in_memory_cache.py │ │ │ └── push_notification_auth.py │ │ ├── mcp_client │ │ ├── __init__.py │ │ ├── client.py │ │ ├── providers │ │ │ ├── __init__.py │ │ │ ├── anthropic.py │ │ │ ├── bytedance.py │ │ │ ├── deepseek.py │ │ │ ├── lmstudio.py │ │ │ ├── ollama.py │ │ │ ├── openai.py │ │ │ ├── vllm.py │ │ │ └── zhipu.py │ │ └── utils.py │ │ └── task_manager.py ├── A2Aclient.py ├── AgentRAG │ ├── README.md │ ├── README_ZH.md │ ├── env_template.txt │ ├── main.py │ ├── mcp_config.json │ ├── mcp_config_url.json │ ├── mcpserver │ │ └── rag_tool.py │ ├── prompt.txt │ └── test_mcp_server.sh ├── DeepSearch │ ├── README.md │ ├── README_ZH.md │ ├── env_template.txt │ ├── main.py │ ├── mcp_config.json │ ├── mcpserver │ │ ├── debug_utils.py │ │ ├── mcp.log │ │ └── search_tool.py │ ├── prompt.txt │ └── test_mcp_server.sh ├── LNGExpert │ ├── README.md │ ├── README_ZH.md │ ├── env_template.txt │ ├── main.py │ ├── mcp_config.json │ ├── mcpserver │ │ ├── Simulate_Factory_Profit.py │ │ └── Simulate_LNG_Price.py │ ├── prompt.txt │ └── test_mcp_server.sh ├── README.md ├── README_ZH.md ├── Reference │ ├── README_ZH.md │ ├── decode_tool.py │ ├── env_template.txt │ ├── main.py │ ├── mcp_config.json │ ├── mcpserver │ │ ├── __init__.py │ │ └── rag_tool.py │ ├── prompt.txt │ ├── test_mcp_server.sh │ └── tool_result.py ├── client.py └── test_A2AClient.py ├── docs ├── Chinese │ ├── LLM_configuration.md │ ├── UI.md │ └── create_new_A2AServer.md ├── English │ ├── LLM_configuration.md │ └── UI.md ├── README.md ├── README_ZH.md └── images │ ├── MultiAgentAddAgent.png │ ├── MultiAgentConversation2.png │ ├── MultiAgentHomePage.png │ ├── MutliAgentAddAgent2.png │ ├── MutliAgentConversation.png │ ├── RAG_reference1.png │ ├── RAG_reference2.png │ ├── SingleAgentHome.png │ └── SingleAgentThought.png └── frontend ├── README.md ├── README_ZH.md ├── hostAgentAPI ├── README.md ├── README_ZH.md ├── ServiceTypes.py ├── adk_host_manager.py ├── agent_card.py ├── api.py ├── application_manager.py ├── env_template.txt ├── hosts │ ├── README.md │ ├── __init__.py │ ├── agent.py │ ├── cli │ │ ├── .python-version │ │ ├── README.md │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── push_notification_listener.py │ │ └── pyproject.toml │ └── multiagent │ │ ├── .python-version │ │ ├── README.md │ │ ├── __init__.py │ │ ├── agent.py │ │ ├── host_agent.py │ │ ├── pyproject.toml │ │ └── remote_agent_connection.py ├── requirements.txt ├── server.py └── test_api.py ├── multiagent_front ├── .env ├── README.md ├── README_ZH.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public │ ├── React-icon.svg │ ├── tailwindcss-mark.svg │ └── vite.svg ├── src │ ├── App.jsx │ ├── api │ │ └── api.js │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── AddAgentDialog.jsx │ │ ├── AgentsTable.jsx │ │ ├── ChatBubble.jsx │ │ ├── Conversation.jsx │ │ ├── ConversationDetail.jsx │ │ ├── ConversationList.jsx │ │ ├── EventConList.jsx │ │ ├── EventItem.jsx │ │ ├── EventList.jsx │ │ └── FormRenderer.jsx │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── AgentListPage.jsx │ │ ├── ConversationPage.jsx │ │ ├── EventPage.jsx │ │ ├── Header.jsx │ │ ├── Home.jsx │ │ ├── Settings.jsx │ │ ├── StartConversationPage.jsx │ │ └── TasksPage.jsx │ └── store │ │ └── recoilState.js ├── tailwind.config.cjs └── vite.config.js └── single_agent ├── .vite └── deps │ ├── @microsoft_fetch-event-source.js │ ├── @microsoft_fetch-event-source.js.map │ ├── _metadata.json │ ├── chunk-76J2PTFD.js │ ├── chunk-76J2PTFD.js.map │ ├── chunk-ENLGS5T4.js │ ├── chunk-ENLGS5T4.js.map │ ├── package.json │ ├── react-dom_client.js │ ├── react-dom_client.js.map │ ├── react.js │ ├── react.js.map │ ├── uuid.js │ └── uuid.js.map ├── README.md ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.cjs ├── public ├── React-icon.svg ├── tailwindcss-mark.svg └── vite.svg ├── src ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── AgentCardDisplay.jsx │ ├── AgentSelector.jsx │ ├── ChatInterface.jsx │ ├── FormDisplay.jsx │ ├── MessageRenderer.jsx │ └── ResearchDisplay.jsx ├── index.css ├── main.jsx ├── services │ └── a2aApiService.js └── utils │ └── encoding.js ├── tailwind.config.cjs └── vite.config.js /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/README_ZH.md -------------------------------------------------------------------------------- /backend/A2AServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/README.md -------------------------------------------------------------------------------- /backend/A2AServer/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/pyproject.toml -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer.egg-info/PKG-INFO -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer.egg-info/requires.txt -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | A2AServer 2 | -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/__init__.py: -------------------------------------------------------------------------------- 1 | # LNG Price Agent for A2A Protocol 2 | -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/agent.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/A2Atypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/A2Atypes.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/client/__init__.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/client/card_resolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/client/card_resolver.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/client/client.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/server/__init__.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/server/server.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/server/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/server/task_manager.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/server/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/server/utils.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/utils/in_memory_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/utils/in_memory_cache.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/common/utils/push_notification_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/common/utils/push_notification_auth.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/client.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/__init__.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/anthropic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/anthropic.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/bytedance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/bytedance.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/deepseek.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/deepseek.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/lmstudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/lmstudio.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/ollama.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/openai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/openai.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/vllm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/vllm.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/providers/zhipu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/providers/zhipu.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/mcp_client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/mcp_client/utils.py -------------------------------------------------------------------------------- /backend/A2AServer/src/A2AServer/task_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2AServer/src/A2AServer/task_manager.py -------------------------------------------------------------------------------- /backend/A2Aclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/A2Aclient.py -------------------------------------------------------------------------------- /backend/AgentRAG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/README.md -------------------------------------------------------------------------------- /backend/AgentRAG/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/README_ZH.md -------------------------------------------------------------------------------- /backend/AgentRAG/env_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/env_template.txt -------------------------------------------------------------------------------- /backend/AgentRAG/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/main.py -------------------------------------------------------------------------------- /backend/AgentRAG/mcp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/mcp_config.json -------------------------------------------------------------------------------- /backend/AgentRAG/mcp_config_url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/mcp_config_url.json -------------------------------------------------------------------------------- /backend/AgentRAG/mcpserver/rag_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/mcpserver/rag_tool.py -------------------------------------------------------------------------------- /backend/AgentRAG/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/prompt.txt -------------------------------------------------------------------------------- /backend/AgentRAG/test_mcp_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/AgentRAG/test_mcp_server.sh -------------------------------------------------------------------------------- /backend/DeepSearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/README.md -------------------------------------------------------------------------------- /backend/DeepSearch/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/README_ZH.md -------------------------------------------------------------------------------- /backend/DeepSearch/env_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/env_template.txt -------------------------------------------------------------------------------- /backend/DeepSearch/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/main.py -------------------------------------------------------------------------------- /backend/DeepSearch/mcp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/mcp_config.json -------------------------------------------------------------------------------- /backend/DeepSearch/mcpserver/debug_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/mcpserver/debug_utils.py -------------------------------------------------------------------------------- /backend/DeepSearch/mcpserver/mcp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/mcpserver/mcp.log -------------------------------------------------------------------------------- /backend/DeepSearch/mcpserver/search_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/mcpserver/search_tool.py -------------------------------------------------------------------------------- /backend/DeepSearch/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/prompt.txt -------------------------------------------------------------------------------- /backend/DeepSearch/test_mcp_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/DeepSearch/test_mcp_server.sh -------------------------------------------------------------------------------- /backend/LNGExpert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/README.md -------------------------------------------------------------------------------- /backend/LNGExpert/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/README_ZH.md -------------------------------------------------------------------------------- /backend/LNGExpert/env_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/env_template.txt -------------------------------------------------------------------------------- /backend/LNGExpert/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/main.py -------------------------------------------------------------------------------- /backend/LNGExpert/mcp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/mcp_config.json -------------------------------------------------------------------------------- /backend/LNGExpert/mcpserver/Simulate_Factory_Profit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/mcpserver/Simulate_Factory_Profit.py -------------------------------------------------------------------------------- /backend/LNGExpert/mcpserver/Simulate_LNG_Price.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/mcpserver/Simulate_LNG_Price.py -------------------------------------------------------------------------------- /backend/LNGExpert/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/prompt.txt -------------------------------------------------------------------------------- /backend/LNGExpert/test_mcp_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/LNGExpert/test_mcp_server.sh -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/README_ZH.md -------------------------------------------------------------------------------- /backend/Reference/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/README_ZH.md -------------------------------------------------------------------------------- /backend/Reference/decode_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/decode_tool.py -------------------------------------------------------------------------------- /backend/Reference/env_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/env_template.txt -------------------------------------------------------------------------------- /backend/Reference/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/main.py -------------------------------------------------------------------------------- /backend/Reference/mcp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/mcp_config.json -------------------------------------------------------------------------------- /backend/Reference/mcpserver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/Reference/mcpserver/rag_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/mcpserver/rag_tool.py -------------------------------------------------------------------------------- /backend/Reference/prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/prompt.txt -------------------------------------------------------------------------------- /backend/Reference/test_mcp_server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/test_mcp_server.sh -------------------------------------------------------------------------------- /backend/Reference/tool_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/Reference/tool_result.py -------------------------------------------------------------------------------- /backend/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/client.py -------------------------------------------------------------------------------- /backend/test_A2AClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/backend/test_A2AClient.py -------------------------------------------------------------------------------- /docs/Chinese/LLM_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/Chinese/LLM_configuration.md -------------------------------------------------------------------------------- /docs/Chinese/UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/Chinese/UI.md -------------------------------------------------------------------------------- /docs/Chinese/create_new_A2AServer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/Chinese/create_new_A2AServer.md -------------------------------------------------------------------------------- /docs/English/LLM_configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/English/LLM_configuration.md -------------------------------------------------------------------------------- /docs/English/UI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/English/UI.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/README_ZH.md -------------------------------------------------------------------------------- /docs/images/MultiAgentAddAgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/MultiAgentAddAgent.png -------------------------------------------------------------------------------- /docs/images/MultiAgentConversation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/MultiAgentConversation2.png -------------------------------------------------------------------------------- /docs/images/MultiAgentHomePage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/MultiAgentHomePage.png -------------------------------------------------------------------------------- /docs/images/MutliAgentAddAgent2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/MutliAgentAddAgent2.png -------------------------------------------------------------------------------- /docs/images/MutliAgentConversation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/MutliAgentConversation.png -------------------------------------------------------------------------------- /docs/images/RAG_reference1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/RAG_reference1.png -------------------------------------------------------------------------------- /docs/images/RAG_reference2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/RAG_reference2.png -------------------------------------------------------------------------------- /docs/images/SingleAgentHome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/SingleAgentHome.png -------------------------------------------------------------------------------- /docs/images/SingleAgentThought.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/docs/images/SingleAgentThought.png -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/README.md -------------------------------------------------------------------------------- /frontend/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/README_ZH.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/README.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/README_ZH.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/ServiceTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/ServiceTypes.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/adk_host_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/adk_host_manager.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/agent_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/agent_card.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/api.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/application_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/application_manager.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/env_template.txt: -------------------------------------------------------------------------------- 1 | DEEPSEEK_API_KEY=sk-xxx -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/README.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/agent.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/cli/README.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/cli/__main__.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/push_notification_listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/cli/push_notification_listener.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/cli/pyproject.toml -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/multiagent/README.md -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/multiagent/agent.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/host_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/multiagent/host_agent.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/multiagent/pyproject.toml -------------------------------------------------------------------------------- /frontend/hostAgentAPI/hosts/multiagent/remote_agent_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/hosts/multiagent/remote_agent_connection.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/requirements.txt -------------------------------------------------------------------------------- /frontend/hostAgentAPI/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/server.py -------------------------------------------------------------------------------- /frontend/hostAgentAPI/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/hostAgentAPI/test_api.py -------------------------------------------------------------------------------- /frontend/multiagent_front/.env: -------------------------------------------------------------------------------- 1 | # hostAgentAPI的启动端口 2 | VITE_HOSTAGENT_API=http://127.0.0.1:13000 -------------------------------------------------------------------------------- /frontend/multiagent_front/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/README.md -------------------------------------------------------------------------------- /frontend/multiagent_front/README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/README_ZH.md -------------------------------------------------------------------------------- /frontend/multiagent_front/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/index.html -------------------------------------------------------------------------------- /frontend/multiagent_front/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/package-lock.json -------------------------------------------------------------------------------- /frontend/multiagent_front/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/package.json -------------------------------------------------------------------------------- /frontend/multiagent_front/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/multiagent_front/public/React-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/public/React-icon.svg -------------------------------------------------------------------------------- /frontend/multiagent_front/public/tailwindcss-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/public/tailwindcss-mark.svg -------------------------------------------------------------------------------- /frontend/multiagent_front/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/public/vite.svg -------------------------------------------------------------------------------- /frontend/multiagent_front/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/App.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/api/api.js -------------------------------------------------------------------------------- /frontend/multiagent_front/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/AddAgentDialog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/AddAgentDialog.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/AgentsTable.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/AgentsTable.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/ChatBubble.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/ChatBubble.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/Conversation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/Conversation.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/ConversationDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/ConversationDetail.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/ConversationList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/ConversationList.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/EventConList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/EventConList.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/EventItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/EventItem.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/EventList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/EventList.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/components/FormRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/components/FormRenderer.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/index.css -------------------------------------------------------------------------------- /frontend/multiagent_front/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/main.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/AgentListPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/AgentListPage.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/ConversationPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/ConversationPage.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/EventPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/EventPage.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/Header.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/Home.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/Settings.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/StartConversationPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/StartConversationPage.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/pages/TasksPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/pages/TasksPage.jsx -------------------------------------------------------------------------------- /frontend/multiagent_front/src/store/recoilState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/src/store/recoilState.js -------------------------------------------------------------------------------- /frontend/multiagent_front/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/multiagent_front/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/multiagent_front/vite.config.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/@microsoft_fetch-event-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/@microsoft_fetch-event-source.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/@microsoft_fetch-event-source.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/@microsoft_fetch-event-source.js.map -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/_metadata.json -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/chunk-76J2PTFD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/chunk-76J2PTFD.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/chunk-76J2PTFD.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/chunk-76J2PTFD.js.map -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/chunk-ENLGS5T4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/chunk-ENLGS5T4.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/chunk-ENLGS5T4.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/chunk-ENLGS5T4.js.map -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/react-dom_client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/react-dom_client.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/react-dom_client.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/react-dom_client.js.map -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/react.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/react.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/react.js.map -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/uuid.js -------------------------------------------------------------------------------- /frontend/single_agent/.vite/deps/uuid.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/.vite/deps/uuid.js.map -------------------------------------------------------------------------------- /frontend/single_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/README.md -------------------------------------------------------------------------------- /frontend/single_agent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/index.html -------------------------------------------------------------------------------- /frontend/single_agent/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/package-lock.json -------------------------------------------------------------------------------- /frontend/single_agent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/package.json -------------------------------------------------------------------------------- /frontend/single_agent/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/postcss.config.cjs -------------------------------------------------------------------------------- /frontend/single_agent/public/React-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/public/React-icon.svg -------------------------------------------------------------------------------- /frontend/single_agent/public/tailwindcss-mark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/public/tailwindcss-mark.svg -------------------------------------------------------------------------------- /frontend/single_agent/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/public/vite.svg -------------------------------------------------------------------------------- /frontend/single_agent/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/App.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/assets/react.svg -------------------------------------------------------------------------------- /frontend/single_agent/src/components/AgentCardDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/AgentCardDisplay.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/components/AgentSelector.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/AgentSelector.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/components/ChatInterface.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/ChatInterface.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/components/FormDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/FormDisplay.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/components/MessageRenderer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/MessageRenderer.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/components/ResearchDisplay.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/components/ResearchDisplay.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/index.css -------------------------------------------------------------------------------- /frontend/single_agent/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/main.jsx -------------------------------------------------------------------------------- /frontend/single_agent/src/services/a2aApiService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/services/a2aApiService.js -------------------------------------------------------------------------------- /frontend/single_agent/src/utils/encoding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/src/utils/encoding.js -------------------------------------------------------------------------------- /frontend/single_agent/tailwind.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/tailwind.config.cjs -------------------------------------------------------------------------------- /frontend/single_agent/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnson7788/A2AServer/HEAD/frontend/single_agent/vite.config.js --------------------------------------------------------------------------------