ai / backend /agents /answer_agent.py
3v324v23's picture
agent
b4291bc
Raw
History Blame Contribute Delete
174 Bytes
from backend.services.query_service import query_service
def answer(repo_id: str, question: str, top_k: int = 8):
return query_service.answer(repo_id, question, top_k)