Fixes extra arg given in chat-with-ai call in main

pull/689/head
Toran Bruce Richards 2023-04-10 14:23:20 +01:00
parent 643ca9d084
commit 37b4473137
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ while True:
user_input,
full_message_history,
memory,
cfg.fast_token_limit, cfg.debug) # TODO: This hardcodes the model to use GPT3.5. Make this an argument
cfg.fast_token_limit) # TODO: This hardcodes the model to use GPT3.5. Make this an argument
# Print Assistant thoughts
print_assistant_thoughts(assistant_reply)