Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def generate_enhanced_prompt(user_prompt, mode):
|
|
| 22 |
system_prompt = "You are a world-class AI strategist specializing in execution-focused prompts. Transform the following prompt for high-impact, expert-level results."
|
| 23 |
|
| 24 |
# Generate response using Gemini API
|
| 25 |
-
response =
|
| 26 |
return response
|
| 27 |
|
| 28 |
# Process User Input
|
|
|
|
| 22 |
system_prompt = "You are a world-class AI strategist specializing in execution-focused prompts. Transform the following prompt for high-impact, expert-level results."
|
| 23 |
|
| 24 |
# Generate response using Gemini API
|
| 25 |
+
response = gemini_model.generate_content(system_prompt + "\n\n" + user_prompt)
|
| 26 |
return response
|
| 27 |
|
| 28 |
# Process User Input
|