ysharma HF staff commited on
Commit
4c52314
·
1 Parent(s): 41d03bf
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -32,13 +32,13 @@ A: Let’s think step by step.
32
 
33
 
34
 
35
- def text_generate(prompt, input_prompt_sql, input_prompt_dalle2):
36
 
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,
44
  "parameters":
 
32
 
33
 
34
 
35
+ def text_generate(prompt, input_prompt_sql ): #, input_prompt_dalle2):
36
 
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,
44
  "parameters":