Spaces:
Build error
Build error
Commit
·
8dd9bc7
1
Parent(s):
a3dee51
Add application file
Browse files
app.py
CHANGED
@@ -1,7 +1,35 @@
|
|
1 |
import gradio as gr
|
|
|
|
|
2 |
|
3 |
-
|
4 |
-
return "Hello " + name + "!!"
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import gradio as gr
|
2 |
+
import openai
|
3 |
+
import os
|
4 |
|
5 |
+
openai.api_key = os.getenv("api_key")
|
|
|
6 |
|
7 |
+
def run_ai(name, words):
|
8 |
+
|
9 |
+
name = name.lower()
|
10 |
+
|
11 |
+
if name == 'mauldin':
|
12 |
+
|
13 |
+
testing = openai.ChatCompletion.create(
|
14 |
+
model="gpt-3.5-turbo",
|
15 |
+
messages=[
|
16 |
+
{"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."},
|
17 |
+
{"role": "user", "content": "The action you are asking is for an article to be created and published on a new release."},
|
18 |
+
{"role": "user", "content": "I will be adding information that is relevent. Can you aggregate this information into an email to sent?"},
|
19 |
+
{"role": "user", "content": words},
|
20 |
+
{"role": "user", "content": "Draft email."}
|
21 |
+
]
|
22 |
+
)
|
23 |
+
return testing['choices'][0]['message']['content']
|
24 |
+
|
25 |
+
else:
|
26 |
+
return "You are not JUSTIN!!!"
|
27 |
+
|
28 |
+
|
29 |
+
demo = gr.Interface(
|
30 |
+
fn=run_ai,
|
31 |
+
inputs=[gr.Textbox(label="Last Name"), gr.Textbox(lines=2, label="A bunch of words about your product.")],
|
32 |
+
outputs=["text"],
|
33 |
+
)
|
34 |
+
|
35 |
+
demo.launch()
|