Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -548,7 +548,7 @@ language_option = ["中文", "英文"]
|
|
| 548 |
|
| 549 |
def SelectModel(option):
|
| 550 |
global selected_model
|
| 551 |
-
if option == "
|
| 552 |
selected_model = "gpt"
|
| 553 |
elif option == "llama3-70b":
|
| 554 |
selected_model = "llama3-70b"
|
|
@@ -558,7 +558,7 @@ def SelectModel(option):
|
|
| 558 |
selected_model = "mistral"
|
| 559 |
|
| 560 |
|
| 561 |
-
model_option = ["
|
| 562 |
|
| 563 |
|
| 564 |
def start(topic, image_summaries):
|
|
|
|
| 548 |
|
| 549 |
def SelectModel(option):
|
| 550 |
global selected_model
|
| 551 |
+
if option == "自研":
|
| 552 |
selected_model = "gpt"
|
| 553 |
elif option == "llama3-70b":
|
| 554 |
selected_model = "llama3-70b"
|
|
|
|
| 558 |
selected_model = "mistral"
|
| 559 |
|
| 560 |
|
| 561 |
+
model_option = ["自研", "llama3-70b", "llama3-8b", "mistral"]
|
| 562 |
|
| 563 |
|
| 564 |
def start(topic, image_summaries):
|