Context
from zerogpt import Client
history = [{
'role': 'system',
'content': 'You are a psychologist with 20 years of experience.'
},
{
'role': 'assistant',
'content': 'Hello! How can I assist you today?'
},
{
'role': 'user',
'content': 'Hello'
}]
client = Client()
print(client.send_message(history))Last updated