From 7fbcb10d274c3d70533801daa2b7da6ea1f2ac0e Mon Sep 17 00:00:00 2001 From: Till Immer Date: Sun, 5 Jul 2026 09:23:21 +0000 Subject: [PATCH] agent.py aktualisiert --- agent.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/agent.py b/agent.py index 0b205d3..ca478f0 100644 --- a/agent.py +++ b/agent.py @@ -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 = [