У меня есть следующий код Python, работающий для text-davinci-003
import openai
import time
openai.api_key = "skXXXXXXX"
model_engine = "text-davinci-003"
# Define the prompt for the conversation
prompt = "Conversation with an AI:"
while True:
# Get the user's input
user_input = input(prompt + " ")
# Check if the user wants to exit
if user_input.lower() in ["quit", "exit", "bye"]:
print("Goodbye!")
break
# Generate a response from the OpenAI API
response = openai.Completion.create(
engine=model_engine,
prompt=prompt + " " + user_input,
max_tokens=1024,
n=1,
stop=None,
temperature=0.7,
)
# Print the AI's response
message = response.choices[0].text.strip()
print("AI: " + message)
# Wait for a bit before continuing
time.sleep(1)
Ни за что не могу заставить его работать с "ГПТ-3,5-турбо". Я пробовал следующий код из репозитория github, но получаю ошибки:
import openai
# load and set our key
openai.api_key = open("key.txt", "r").read().strip("\n")
completion = openai.ChatCompletion.create(
model = "gpt-3.5-turbo", # this is "002 per 1k tokens
messages=[{"role": "user", "content": "What is the circumference in km of the planet Earth?"}]
)
reply_content = completion.choices[0].message.content
print(reply_content)
Но не получается с ошибкой: AttributeError: module 'openai' has no attribute 'ChatCompletion'
Может кто-нибудь любезно помочь!!!
Спасибо.
Похоже, у вас может быть старая версия пакета OpenAI. Вы можете попробовать это:
pip install --upgrade openai
Вы были правы [исх]. Казалось бы, для openai требуется минимум Python 3.7.1. У меня была установлена 3.7.0. Я обновил Python до последней версии, переустановил openai, что решило проблему. Спасибо.