Spaces:
Sleeping
Sleeping
vtrv.vls
commited on
Commit
·
9626dd1
1
Parent(s):
477f668
API fix
Browse files
app.py
CHANGED
@@ -40,6 +40,7 @@ def qwen_gen(content, chat_history):
|
|
40 |
return '', chat_history
|
41 |
|
42 |
def model_gen(content, model_type: str, chat_history):
|
|
|
43 |
gen = MODEL_LIB[model_type]
|
44 |
return gen(content, chat_history)
|
45 |
|
|
|
40 |
return '', chat_history
|
41 |
|
42 |
def model_gen(content, model_type: str, chat_history):
|
43 |
+
print(model_type)
|
44 |
gen = MODEL_LIB[model_type]
|
45 |
return gen(content, chat_history)
|
46 |
|