Spaces:
Runtime error
Runtime error
add openai model
Browse files- app.py +29 -4
- 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 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|