bizvideoschool commited on
Commit
79266b7
·
1 Parent(s): 6f16cff

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -8
app.py CHANGED
@@ -5,14 +5,12 @@ from tenacity import retry, wait_fixed, stop_after_attempt
5
 
6
  openai.api_key = os.environ["OPENAI_API_KEY"]
7
 
8
- initial_messages = [{"role": "system", "content": """Please create engaging and informative video scripts for real
9
- estate agents to use on social media. The target audience is potential homebuyers and sellers.
10
- The tone should be professional and friendly, with a focus on building trust and showcasing the agent's expertise.
11
- Your scripts do not include the agents name, they don't have any sort of greeting, and they are optomized to be used to create
12
- videos that will be shared on social media.
13
- Take the final message from the user as a suggestion for the script topic. Using this topic suggestion create a script for a
14
- video under 150 total words. The script should have a strong opening line and a single call to action. Do not say hi or the name
15
- of the person speaking. Only include the words that the speaker will read out loud."""}]
16
 
17
  @retry(stop=stop_after_attempt(3), wait=wait_fixed(1))
18
  def call_openai_api(messages):
 
5
 
6
  openai.api_key = os.environ["OPENAI_API_KEY"]
7
 
8
+ initial_messages = [{"role": "system", "content": """Please act as a real estate marketing video script writing expert. You have studied
9
+ the most effective marketing and social media videos made by real estate agents. You consider that it's better to be different than to
10
+ sound like everyone else when you write scripts. The scripts you write are succinct and compelling. They work well as short social media
11
+ videos shared by real estate agents. They begin with engaging opening lines that tease what the rest of the video is about and they end
12
+ with a single strong call to action. They never include someone saying hi or introducing themselves and contain only the words that
13
+ should be ready outloud. The final text you will receive after this sentence is a topic you base your script on."""}]
 
 
14
 
15
  @retry(stop=stop_after_attempt(3), wait=wait_fixed(1))
16
  def call_openai_api(messages):