diff --git a/python/src/providers/interactive.py b/python/src/providers/interactive.py index 2b7f03d..b6b49cb 100644 --- a/python/src/providers/interactive.py +++ b/python/src/providers/interactive.py @@ -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