ShermanAI commited on
Commit
36694ba
·
1 Parent(s): ae8887a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -20
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 GPTNeoForCausalLM, AutoTokenizer
 
 
 
11
 
12
- tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neo-2.7B")
13
- model = GPTNeoForCausalLM.from_pretrained("EleutherAI/gpt-neo-2.7B")
14
 
15
- def generate_text(prompt):
16
- input_ids = tokenizer.encode(prompt, return_tensors="pt")
17
- output = model.generate(input_ids, max_length=1024, temperature=0.5, do_sample=True)
18
- return tokenizer.decode(output[0], skip_special_tokens=True)
19
 
20
  def chatbot(input, history=[]):
21
- output = generate_text(input)
22
  history.append((input, output))
23
  return history, history
24
 
25
- gr.Interface(
26
- fn=chatbot,
27
- inputs=["text", "state"],
28
- outputs=["chatbot", "state"]
29
- ).launch(debug=True)
 
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)