aaravsingh commited on
Commit
417e086
1 Parent(s): b29e6b4
Files changed (1) hide show
  1. coding/bot.py +25 -0
coding/bot.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import openai
2
+ import gradio as gr
3
+
4
+ openai.api_key = "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"
5
+
6
+ messages = [
7
+ {"role": "system", "content": "You are a helpful and kind AI Assistant."},
8
+ ]
9
+
10
+ def chatbot(input):
11
+ if input:
12
+ messages.append({"role": "user", "content": input})
13
+ chat = openai.ChatCompletion.create(
14
+ model="gpt-3.5-turbo", messages=messages
15
+ )
16
+ reply = chat.choices[0].message.content
17
+ messages.append({"role": "assistant", "content": reply})
18
+ return reply
19
+
20
+ inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
21
+ outputs = gr.outputs.Textbox(label="Reply")
22
+
23
+ gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="AI Chatbot",
24
+ description="Ask anything you want",
25
+ theme="compact").launch(share=True)