Skip to content

Commit

Permalink
Disable llm log on extracting question
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin committed Jan 16, 2025
1 parent 4a4ce4c commit e00ad69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/utils/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1379,9 +1379,9 @@ def extract_question_from_conversation(messages: List[Message]) -> str:
- etc.
</date_in_term>
'''.replace(' ', '').strip()
print(prompt)
# print(prompt)
question = llm_mini.with_structured_output(OutputQuestion).invoke(prompt).question
print(question)
# print(question)
return question


Expand Down

0 comments on commit e00ad69

Please sign in to comment.