File size: 1,016 Bytes
91ef23a
 
 
7d78b60
 
91ef23a
7d78b60
 
ebe8a2b
7d78b60
 
 
91ef23a
 
2b9b16e
91ef23a
 
 
 
 
e87bbbb
91ef23a
 
 
 
aef5ec5
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
import os
import openai
import gradio
import os
from dotenv import load_dotenv

# Load environment variables from the .env file
#load_dotenv()
openai.api_key = os.environ["OPENAI_API_KEY"]
#openai.api_key = os.getenv("openai_api_key")
#openai.organization = os.getenv("openai_organization_id")
messages = [{"role": "system", "content": "You are an intelligent assistant from Iron Man - your name is J.A.R.V.İ.S-. "}]

def CustomChatGPT(user_input):
    messages.append({"role": "user", "content": "You are an intelligent assistant from Iron Man - your name is J.A.R.V.İ.S-. Act as you are the JARVIS and answer such " +  user_input})
    response = openai.ChatCompletion.create(
        model = "gpt-4",
        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 = "J.A.R.V.I.S.")

demo.launch()