Spaces:
Sleeping
Sleeping
Commit
·
5afe7da
1
Parent(s):
f921a22
Update app.py
Browse files
app.py
CHANGED
@@ -4,14 +4,10 @@ import os
|
|
4 |
|
5 |
openai.api_key = os.environ["OPENAI_API_KEY"]
|
6 |
|
7 |
-
messages = [{"role": "system", "content": """Please
|
8 |
-
|
9 |
-
The
|
10 |
-
|
11 |
-
encouraging viewers to contact the agent for more information or assistance.
|
12 |
-
Write only the words the agent should read into the camera. Once you create the script, analyze it and determine 5
|
13 |
-
engaging hooks that could replace the first sentence. Analyze those 5 hooks, pick the best one, and replace the
|
14 |
-
existing hook in the script you wrote with the new one. Deliver the script with the new hook included."""}]
|
15 |
|
16 |
def CustomChatGPT(user_input):
|
17 |
messages.append({"role": "user", "content": user_input})
|
@@ -23,7 +19,7 @@ def CustomChatGPT(user_input):
|
|
23 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
24 |
return ChatGPT_reply
|
25 |
|
26 |
-
demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "
|
27 |
|
28 |
demo.launch(inline = False)
|
29 |
|
|
|
4 |
|
5 |
openai.api_key = os.environ["OPENAI_API_KEY"]
|
6 |
|
7 |
+
messages = [{"role": "system", "content": """Please act as a marketing expert for real estate agents. Your role is
|
8 |
+
to generate ideas for videos. Consider today's date, and develop 10 ideas for videos that a real estate agent could make today.
|
9 |
+
Then consider 10 additional outside the box ideas. The second 10 should be creative and make us pause when we read them. Return the
|
10 |
+
best 5 from each category and label which category they came from."""}]
|
|
|
|
|
|
|
|
|
11 |
|
12 |
def CustomChatGPT(user_input):
|
13 |
messages.append({"role": "user", "content": user_input})
|
|
|
19 |
messages.append({"role": "assistant", "content": ChatGPT_reply})
|
20 |
return ChatGPT_reply
|
21 |
|
22 |
+
demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "Video Idea Generator")
|
23 |
|
24 |
demo.launch(inline = False)
|
25 |
|