elshehawy commited on
Commit
d3f1a70
·
1 Parent(s): 5463463

add openai model

Browse files
Files changed (2) hide show
  1. app.py +29 -4
  2. requirements.txt +1 -0
app.py CHANGED
@@ -1,7 +1,32 @@
1
  import gradio as gr
 
 
2
 
3
- def greet(name):
4
- return "Hello " + name + "!!"
5
 
6
- iface = gr.Interface(fn=greet, inputs="text", outputs="text")
7
- iface.launch()
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  import gradio as gr
2
+ import openai
3
+ import os
4
 
 
 
5
 
6
+ llm_model = 'gpt-3.5-turbo-0125'
7
+ openai.api_key = os.environ['OPENAI_API_KEY']
8
+
9
+
10
+ def get_completion(prompt, model=llm_model):
11
+ messages = [{"role": "user", "content": prompt}]
12
+ response = openai.ChatCompletion.create(
13
+ model=model,
14
+ messages=messages,
15
+ temperature=0,
16
+ )
17
+ return response.choices[0].message["content"]
18
+
19
+ def find_orgs(sentence):
20
+ prompt = f"""
21
+ Find all organizations in the text delimited by triple backticks.
22
+
23
+ text:
24
+ ```
25
+ {sentence}
26
+ ```
27
+ You should always start your answer with "Organizations are: "
28
+ """
29
+ return get_completion(prompt)
30
+
31
+ iface = gr.Interface(fn=find_orgs, inputs="text", outputs="text")
32
+ iface.launch(share=True)
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ openai