From 932144e798419b3cb202882a0f0fb571ec2c1511 Mon Sep 17 00:00:00 2001 From: admin Date: Thu, 22 Jan 2026 17:14:37 +0100 Subject: [PATCH] repo_qa tool repo variable meer duidelijk gemaakt voor toolcall --- app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 9d931fb..67ecc57 100644 --- a/app.py +++ b/app.py @@ -2080,7 +2080,7 @@ async def _execute_tool(name: str, args: dict) -> dict: # Repo if name == "repo_qa": # High-level QA over een specifieke repo. - out=json.dumps(await repo_qa_answer(repo_hint=args.get("repo_hint"),question=args.get("question"),branch=args.get("branch","main"),n_ctx=10), ensure_ascii=False) + out=json.dumps(await repo_qa_answer(repo_hint=args.get("repo"),question=args.get("question"),branch=args.get("branch","main"),n_ctx=10), ensure_ascii=False) return out # Web tools @@ -2279,11 +2279,11 @@ TOOLS_REGISTRY = { },"required":["command"]} }, "repo_qa": { - "description": "High-level QA over een specifieke repo. (incl. RAG,clone,summary,context fuctionalities). Repo hint graag als full url met .git ", + "description": "High-level QA over een specifieke repo. (incl. RAG,clone,summary,context fuctionalities).", "parameters":{ "type":"object", "properties":{ - "repo_hint":{"type":"string"}, + "repo":{"type":"string"}, "question":{"type":"string"}, "branch":{"type":"string"}, },"required":["repo_hint","question"]}