Skip to content

feat: metadata brain core #3640

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion core/quivr_core/brain/brain.py
Original file line number Diff line number Diff line change
Expand Up @@ -585,6 +585,7 @@ async def aask(
"""
# question_language = detect_language(question) -- Commented until we use it
full_answer = ""
metadata = None

async for response in self.ask_streaming(
run_id=run_id,
Expand All @@ -597,8 +598,10 @@ async def aask(
**input_kwargs,
):
full_answer += response.answer
if response.metadata:
metadata = response.metadata

return ParsedRAGResponse(answer=full_answer)
return ParsedRAGResponse(answer=full_answer, metadata=metadata)

def ask(
self,
Expand Down
Loading