Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,29 +1,25 @@
|
|
1 |
import subprocess
|
2 |
-
subprocess.check_call(["pip", "install", "-q", "gradio", "transformers", "python-dotenv", "torch"])
|
3 |
-
#!pip install -q gradio
|
4 |
-
#!pip install gradio
|
5 |
-
#!pip install --quiet gradio
|
6 |
-
#!pip install transformers
|
7 |
-
#!pip install python-dotenv
|
8 |
-
|
9 |
import gradio as gr
|
10 |
-
from transformers import
|
|
|
|
|
|
|
11 |
|
12 |
-
|
13 |
-
|
14 |
|
15 |
-
def
|
16 |
-
|
17 |
-
|
18 |
-
return
|
19 |
|
20 |
def chatbot(input, history=[]):
|
21 |
-
output =
|
22 |
history.append((input, output))
|
23 |
return history, history
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
|
|
1 |
import subprocess
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
import gradio as gr
|
3 |
+
from transformers import TFAutoModelForCausalLM, AutoTokenizer
|
4 |
+
import openai
|
5 |
+
from dotenv import load_dotenv
|
6 |
+
import os
|
7 |
|
8 |
+
load_dotenv() # load environment variables from .env file
|
9 |
+
api_key = os.getenv("OPENAI_API_KEY") # access the value of the OPENAI_API_KEY environment variable
|
10 |
|
11 |
+
def openai_chat(prompt):
|
12 |
+
completions = openai.Completion.create(engine="text-davinci-003", prompt=prompt, max_tokens=1024, n=1, temperature=0.5,)
|
13 |
+
message = completions.choices[0].text
|
14 |
+
return message.strip()
|
15 |
|
16 |
def chatbot(input, history=[]):
|
17 |
+
output = openai_chat(input)
|
18 |
history.append((input, output))
|
19 |
return history, history
|
20 |
|
21 |
+
title = "My Chatbot Title"
|
22 |
+
inputs = ["text", "state"]
|
23 |
+
outputs = ["chatbot", "state"]
|
24 |
+
interface = gr.Interface(fn=chatbot, inputs=inputs, outputs=outputs, title=title)
|
25 |
+
interface.launch(debug=True)
|