agent.py aktualisiert

This commit is contained in:
2026-07-05 09:23:21 +00:00
parent dc7175333b
commit 7fbcb10d27
+3 -1
View File
@@ -2,12 +2,14 @@ import json
from llm.base import LLMBase
from mcp.client import MCPClient
from config import MCP_URL
class Agent:
def __init__(self, llm: LLMBase):
self.llm = llm
self.mcp = MCPClient()
self.mcp = MCPClient(MCP_URL)
self.tools = []
self.messages = [