Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -2017,7 +2017,7 @@ class MyScene(Scene):
|
|
2017 |
messages=[
|
2018 |
UserMessage("Hello, this is a connection test."),
|
2019 |
],
|
2020 |
-
max_tokens=
|
2021 |
model=model_name
|
2022 |
)
|
2023 |
|
@@ -2048,12 +2048,21 @@ class MyScene(Scene):
|
|
2048 |
|
2049 |
# Predefined Azure models
|
2050 |
popular_models = [
|
2051 |
-
"gpt-4o",
|
2052 |
"DeepSeek-V3-0324",
|
2053 |
"DeepSeek-R1",
|
2054 |
"Meta-Llama-3.1-405B-Instruct",
|
2055 |
"Llama-3.2-90B-Vision-Instruct",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2056 |
"Phi-4-multimodal-instruct",
|
|
|
|
|
2057 |
]
|
2058 |
|
2059 |
selected_model = st.selectbox(
|
|
|
2017 |
messages=[
|
2018 |
UserMessage("Hello, this is a connection test."),
|
2019 |
],
|
2020 |
+
max_tokens=1000000,
|
2021 |
model=model_name
|
2022 |
)
|
2023 |
|
|
|
2048 |
|
2049 |
# Predefined Azure models
|
2050 |
popular_models = [
|
|
|
2051 |
"DeepSeek-V3-0324",
|
2052 |
"DeepSeek-R1",
|
2053 |
"Meta-Llama-3.1-405B-Instruct",
|
2054 |
"Llama-3.2-90B-Vision-Instruct",
|
2055 |
+
"Llama-3.3-70B-Instruct"
|
2056 |
+
"Llama-4-Scout-17B-16E-Instruct",
|
2057 |
+
"Llama-4-Maverick-17B-128E-Instruct-FP8",
|
2058 |
+
"gpt-4o",
|
2059 |
+
"o3-mini",
|
2060 |
+
"o1",
|
2061 |
+
"o1-mini",
|
2062 |
+
"o1-preview",
|
2063 |
"Phi-4-multimodal-instruct",
|
2064 |
+
"Mistral-large-2407",
|
2065 |
+
"Codestral-2501",
|
2066 |
]
|
2067 |
|
2068 |
selected_model = st.selectbox(
|