From 988cfaf71d5a671993901bf7d93e5bad607f9472 Mon Sep 17 00:00:00 2001 From: MJ Anderson Date: Mon, 2 Jun 2025 21:04:45 -0400 Subject: [PATCH] Update main.py Fix minor typo in main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 9a7d0ae3..59576f63 100644 --- a/main.py +++ b/main.py @@ -5,7 +5,7 @@ model = OllamaLLM(model="llama3.2") template = """ -You are an exeprt in answering questions about a pizza restaurant +You are an expert in answering questions about a pizza restaurant Here are some relevant reviews: {reviews} @@ -23,4 +23,4 @@ reviews = retriever.invoke(question) result = chain.invoke({"reviews": reviews, "question": question}) - print(result) \ No newline at end of file + print(result)