gpt4free-original/gpt4free/italygpt
Hexye 611a565092
add italygpt.it
2023-05-01 19:24:01 +02:00
..
README.md add italygpt.it 2023-05-01 19:24:01 +02:00
__init__.py add italygpt.it 2023-05-01 19:24:01 +02:00

README.md

Example: italygpt

# create an instance
from gpt4free import italygpt
italygpt = italygpt.Completion()

# initialize api
italygpt.init()

# get an answer
italygpt.create(prompt="What is the meaning of life?")
print(italygpt.answer) # html formatted

# keep the old conversation
italygpt.create(prompt="Are you a human?", messages=italygpt.messages)
print(italygpt.answer)