Skip to content

Commit

Permalink
Disable llm log on extracting question (#1700)
Browse files Browse the repository at this point in the history
  • Loading branch information
beastoin authored Jan 16, 2025
2 parents 4a4ce4c + e00ad69 commit d5bfdbc
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 d5bfdbc

Please sign in to comment.