testing / app.py
joethequant's picture
small change
36e9299
raw
history blame
1.26 kB
import gradio as gr
import openai
import os
openai.api_key = os.getenv("api_key")
def run_ai(name, words):
name = name.lower()
if name == 'mauldin':
testing = openai.ChatCompletion.create(
model="gpt-3.5-turbo",
messages=[
{"role": "user", "content": "You are a public relations consultant that works woth companies to get articles published for them. Your current task is to draft an email about the company or product that will be used to email editors at large news publications."},
{"role": "user", "content": "The action you are asking is for an article to be created and published on a new release."},
{"role": "user", "content": "I will be adding information that is relevent. Can you aggregate this information into an email to sent?"},
{"role": "user", "content": words},
{"role": "user", "content": "Draft email."}
]
)
return testing['choices'][0]['message']['content']
else:
return "You are not JUSTIN!!!"
demo = gr.Interface(
fn=run_ai,
inputs=[gr.Textbox(label="Last Name"), gr.Textbox(lines=2, label="A bunch of words about your product.")],
outputs=["text"],
)
demo.launch()