File size: 1,006 Bytes
2153f10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5aaf882
2153f10
1373c2e
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
import openai
import gradio as gr

openai.api_key = "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"

messages = [
    {"role": "system", "content": "You are an AI assistant who can answer any question. If you are unable to answer a question just say: What the hail you doing? You think AI know everything?Do not put any hyperlinks in responces or get information from blog posts."},
]

def chatbot(input):
    if input:
        messages.append({"role": "user", "content": input})
        chat = openai.ChatCompletion.create(
            model="gpt-3.5-turbo", messages=messages
        )
        reply = chat.choices[0].message.content
        messages.append({"role": "assistant", "content": reply})
        return reply

inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
outputs = gr.outputs.Textbox(label="Reply")

gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title="Human AI",
             description="Ask anything you want",
             theme="compact").launch(share=False)