Spaces:
Runtime error
Runtime error
upd
Browse files
app.py
CHANGED
|
@@ -37,7 +37,7 @@ def text_generate(prompt, input_prompt_sql, input_prompt_dalle2):
|
|
| 37 |
print(f"*****Inside poem_generate - Prompt is :{prompt}")
|
| 38 |
if input_prompt_sql != '':
|
| 39 |
prompt = "Instruction: Given an input question, respond with syntactically correct PostgreSQL\nInput: " +input_prompt_sql + "\nPostgreSQL query: "
|
| 40 |
-
|
| 41 |
prompt = "Dalle Prompt: " + input_prompt_dalle2 + "\nNew Dalle Prompt: "
|
| 42 |
|
| 43 |
json_ = {"inputs": prompt,
|
|
|
|
| 37 |
print(f"*****Inside poem_generate - Prompt is :{prompt}")
|
| 38 |
if input_prompt_sql != '':
|
| 39 |
prompt = "Instruction: Given an input question, respond with syntactically correct PostgreSQL\nInput: " +input_prompt_sql + "\nPostgreSQL query: "
|
| 40 |
+
elif input_prompt_dalle2 !='':
|
| 41 |
prompt = "Dalle Prompt: " + input_prompt_dalle2 + "\nNew Dalle Prompt: "
|
| 42 |
|
| 43 |
json_ = {"inputs": prompt,
|