openAI_ChatGPT_Assistant / openAI_ChatGPT_Assistant.py
Balams's picture
Create openAI_ChatGPT_Assistant.py
f282bf7
raw
history blame
649 Bytes
import openai
import gradio
openai.api_key = "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"
messages = [{"role": "system", "content": "Chat GPT"}]
def CustomChatGPT(user_input):
messages.append({"role": "user", "content": user_input})
response = openai.ChatCompletion.create(
model = "gpt-3.5-turbo",
messages = messages
)
ChatGPT_reply = response["choices"][0]["message"]["content"]
messages.append({"role": "assistant", "content": ChatGPT_reply})
return ChatGPT_reply
demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "OpenAI ChatGPT Assistant")
demo.launch()