Skip to content

Commit abe8921

Browse files
committed
fix: remove print statement
1 parent f595ff0 commit abe8921

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

generate_response.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ def call_llm(body):
5656
[/INST]
5757
"""
5858

59-
60-
6159
context_docs = get_query_results(query)
6260
context_string = " ".join([doc["text"] for doc in context_docs])
6361

@@ -78,8 +76,6 @@ def call_llm(body):
7876
messages=[{"role": "user", "content": prompt}], max_tokens=300
7977
)
8078

81-
82-
print(output.choices[0].message.content)
8379
# Try to extract the JSON array from the output string
8480
output_text = output.choices[0].message.content
8581

0 commit comments

Comments
 (0)