mohammedhafeez commited on
Commit
082c648
·
1 Parent(s): a63995b
Files changed (1) hide show
  1. main.py +20 -0
main.py ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import gradio
3
+
4
+ openai.api_key = "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"
5
+
6
+ messages = [{"role": "system", "content": "You are an expert Python developer and more programming languages with years of experience writing Python code and teaching Python to other programmers"}]
7
+
8
+ def CustomChatGPT(user_input):
9
+ messages.append({"role": "user", "content": user_input})
10
+ response = openai.ChatCompletion.create(
11
+ model = "gpt-3.5-turbo",
12
+ messages = messages
13
+ )
14
+ ChatGPT_reply = response["choices"][0]["message"]["content"]
15
+ messages.append({"role": "assistant", "content": ChatGPT_reply})
16
+ return ChatGPT_reply
17
+
18
+ demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "HAFEEZGPT😂")
19
+
20
+ demo.launch(share=True)