send_message
Sending a Simple Message
from zerogpt import Client
client = Client()
print(client.send_message('Hello'))How to Define a Role for the Model in the Prompt
from zerogpt import Client
client = Client()
print(client.send_message(
'Hello',
instruction='You are a psychologist with 20 years of experience.'
))Last updated