added user name to model

This commit is contained in:
wea_ondara
2024-04-18 20:19:44 +02:00
parent 30cce3842e
commit b40a6671d8
9 changed files with 191 additions and 12 deletions

View File

@@ -4,5 +4,5 @@ from utils.prompt import prompt
client = ChatClient()
while True:
user_prompt = prompt('>> User: ')
response = client.input(user_prompt)
response = client.input('user', user_prompt)
print(response)