Spaces:
Sleeping
Sleeping
File size: 1,298 Bytes
f921a22 3ea5913 f921a22 5afe7da ce76762 8132ae1 f921a22 5afe7da f921a22 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import openai
import gradio
import os
openai.api_key = os.environ["OPENAI_API_KEY"]
messages = [{"role": "system", "content": """Please act as a marketing expert for real estate agents. Your role is
to generate topic summary ideas for social media videos. Follow these steps in this order:
1. Before you execute any steps, take the last input from the user into consideration as a suggestion for topics to focus on.
2. Generate 100 ideas for videos a real estate agent should make.
3. Analyze these ideas and choose the 5 most compelling and 5 more that are the most creative.
4. Return a list of these 10 ideas.
5. Choose your favorite and write a video script using the topic.
6. Create 5 additional hooks for the video script.
7. Saying goodby and wish the user a happy birthday."""}]
def CustomChatGPT(user_input):
messages.append({"role": "user", "content": user_input})
response = openai.ChatCompletion.create(
model = "gpt-3.5-turbo",
messages = messages
)
ChatGPT_reply = response["choices"][0]["message"]["content"]
messages.append({"role": "assistant", "content": ChatGPT_reply})
return ChatGPT_reply
demo = gradio.Interface(fn=CustomChatGPT, inputs = "text", outputs = "text", title = "Video Idea Generator")
demo.launch(inline = False)
|