Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -91,11 +91,11 @@ system_prompt = "You are an assistant that analyzes the contents of several rele
|
|
91 |
and creates a short brochure about the company for prospective customers, investors and recruits. Respond in markdown.\
|
92 |
Include details of company culture, customers and careers/jobs if you have the information."
|
93 |
|
94 |
-
def second_call_sytem_prompt(system):
|
95 |
-
if
|
96 |
-
return system_prompt
|
97 |
-
else:
|
98 |
return system
|
|
|
|
|
99 |
|
100 |
|
101 |
def get_brochure_user_prompt(company_name, url):
|
|
|
91 |
and creates a short brochure about the company for prospective customers, investors and recruits. Respond in markdown.\
|
92 |
Include details of company culture, customers and careers/jobs if you have the information."
|
93 |
|
94 |
+
def second_call_sytem_prompt(system=None):
|
95 |
+
if system:
|
|
|
|
|
96 |
return system
|
97 |
+
else:
|
98 |
+
return system_prompt
|
99 |
|
100 |
|
101 |
def get_brochure_user_prompt(company_name, url):
|