quivr/backend/core/examples/simple_question.py
AmineDiro 1dc6d88f9b
feat: quivr core minimal chat (#2803)
# Description

Minimal working example of `quivr-core` rag with minimal dependencies.

---------

Co-authored-by: aminediro <aminedirhoussi@gmail.com>
2024-07-09 06:22:16 -07:00

15 lines
391 B
Python

import tempfile
from quivr_core import Brain
if __name__ == "__main__":
with tempfile.NamedTemporaryFile(mode="w", suffix=".txt") as temp_file:
temp_file.write("Gold is metal.")
temp_file.flush()
brain = Brain.from_files(name="test_brain", file_paths=[temp_file.name])
answer = brain.ask("Property of gold?")
print("answer :", answer.answer)