ner-demo / app.py
elshehawy's picture
fix the return statement to work with new openai API
2446b60
raw
history blame
880 Bytes
import gradio as gr
from openai import OpenAI
import os
llm_model = 'gpt-3.5-turbo-0125'
# openai.api_key = os.environ['OPENAI_API_KEY']
client = OpenAI(
api_key=os.environ.get("OPENAI_API_KEY"),
)
def get_completion(prompt, model=llm_model):
messages = [{"role": "user", "content": prompt}]
response = client.chat.completions.create(
messages=messages,
model=model,
temperature=0,
)
return response.choices[0].message.content
def find_orgs(sentence):
prompt = f"""
Find all organizations in the text delimited by triple backticks.
text:
```
{sentence}
```
You should always start your answer with "Organizations are: "
"""
return get_completion(prompt)
example = """
"""
iface = gr.Interface(fn=find_orgs, inputs="text", outputs="text", examples=[[example]])
iface.launch(share=False)