File size: 1,013 Bytes
cafbf04 2d07c9c e351eb5 97c1d38 2aa9797 b6a3ff9 e351eb5 a631f97 97c1d38 d06b0b1 b62a996 d06b0b1 5d92345 d22d48f d38e6ee 1bc6746 e560a6e e351eb5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
import openai
import os
import openai
import os
import gradio as gr
openai.api_key = os.getenv("mykey2")
messages = [{"role": "system", "content": "You are a genius like Albert Einstein"}]
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
description = "This bot was made by Stephane Dube (dubestephane @ vivaldi.net). Feel free to send me a message for any question or inquiry. \n"
title = "I am ready to answer any of your question."
demo = gr.Interface(fn=CustomChatGPT, description = description, title = title, inputs = gr.inputs.Textbox(label = "Question", placeholder="E.g. What is the tallest building in the world?"), outputs = gr.outputs.Textbox(label = "Answer"))
demo.launch()
|