Upload folder using huggingface_hub
Browse files- chatbot-gpt.py +10 -6
chatbot-gpt.py
CHANGED
@@ -10,19 +10,23 @@ messages = [
|
|
10 |
{"role": "system", "content": "You are a helpful and kind AI Assistant."},
|
11 |
]
|
12 |
|
|
|
13 |
def chatbot(input):
|
14 |
if input:
|
15 |
messages.append({"role": "user", "content": input})
|
16 |
-
chat = openai.ChatCompletion.create(
|
17 |
-
model="gpt-3.5-turbo", messages=messages
|
18 |
-
)
|
19 |
reply = chat.choices[0].message.content
|
20 |
messages.append({"role": "assistant", "content": reply})
|
21 |
return reply
|
22 |
|
|
|
23 |
inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
|
24 |
outputs = gr.outputs.Textbox(label="Reply")
|
25 |
|
26 |
-
gr.Interface(
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
10 |
{"role": "system", "content": "You are a helpful and kind AI Assistant."},
|
11 |
]
|
12 |
|
13 |
+
|
14 |
def chatbot(input):
|
15 |
if input:
|
16 |
messages.append({"role": "user", "content": input})
|
17 |
+
chat = openai.ChatCompletion.create(model="gpt-3.5-turbo", messages=messages)
|
|
|
|
|
18 |
reply = chat.choices[0].message.content
|
19 |
messages.append({"role": "assistant", "content": reply})
|
20 |
return reply
|
21 |
|
22 |
+
|
23 |
inputs = gr.inputs.Textbox(lines=7, label="Chat with AI")
|
24 |
outputs = gr.outputs.Textbox(label="Reply")
|
25 |
|
26 |
+
gr.Interface(
|
27 |
+
fn=chatbot,
|
28 |
+
inputs=inputs,
|
29 |
+
outputs=outputs,
|
30 |
+
title="ChatGPT : Test!",
|
31 |
+
description="Ask anything you want",
|
32 |
+
).launch()
|