Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -30,7 +30,7 @@ def greet(modelpath1="",modelpath2="",modelpath3="",modelpath4="",modelpath5="")
|
|
| 30 |
return "Could not find any models. Please check the model name."
|
| 31 |
|
| 32 |
gpt_input = ""
|
| 33 |
-
gpt_input += os.environ["prompts"] +"\n\n"
|
| 34 |
for i in range(len(names)):
|
| 35 |
if i not in index_to_ignore:
|
| 36 |
gpt_input += "modelname: " + names[i] + "\n" + " config file:" + str(configs[i]) + "\n\n"
|
|
|
|
| 30 |
return "Could not find any models. Please check the model name."
|
| 31 |
|
| 32 |
gpt_input = ""
|
| 33 |
+
gpt_input += os.environ["prompts"]+os.environ["prompts2"] +"\n\n"
|
| 34 |
for i in range(len(names)):
|
| 35 |
if i not in index_to_ignore:
|
| 36 |
gpt_input += "modelname: " + names[i] + "\n" + " config file:" + str(configs[i]) + "\n\n"
|