Skip to content

Commit

Permalink
Fix unused variable in the interactive provider
Browse files Browse the repository at this point in the history
  • Loading branch information
klntsky committed Nov 22, 2024
1 parent c2c6779 commit 30d185c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/src/providers/interactive.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ async def ainvoke(
str: Chunks of the response as they're received.
"""
prompt = serialize_chat_history(chat)
output = input("[Q]: " + prompt + f"\n[{role}]: ")
output = input("Input:\n" + prompt + "\nYour answer: ")
yield output

0 comments on commit 30d185c

Please sign in to comment.