We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28b10e0 commit fcf210fCopy full SHA for fcf210f
gpt_server/serving/chat_ui.py
@@ -24,6 +24,7 @@
24
if (
25
model_config["model_type"] != "embedding"
26
and model_config["model_type"] != "embedding_infinity"
27
+ and model_config["model_type"] != "funasr"
28
):
29
support_models.append(model_name)
30
port = config["serve_args"]["port"]
@@ -53,7 +54,7 @@ def init_chat_history():
53
54
55
56
def main():
- st.title(f"GPT_SERVER")
57
+ st.title(f"Chat UI")
58
models = [i.id for i in client.models.list() if i.id in support_models]
59
model = st.sidebar.selectbox(label="选择模型", options=models)
60
temperature = st.sidebar.slider(
0 commit comments