Spaces:
Running
Running
Commit
·
7e5a32d
1
Parent(s):
50fc1ea
fixing llm names
Browse files- app/variables.py +6 -5
app/variables.py
CHANGED
@@ -290,15 +290,16 @@ select_column = {
|
|
290 |
|
291 |
}
|
292 |
|
|
|
293 |
from langchain_openai import ChatOpenAI
|
294 |
import streamlit as st
|
|
|
295 |
|
296 |
llm_options = {
|
297 |
-
"
|
298 |
-
"
|
299 |
"gemma3": ChatOpenAI(model = "gemma3", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
300 |
-
# "DeepSeek-R1-Distill-Qwen-32B":
|
301 |
"watt": ChatOpenAI(model = "watt", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
302 |
-
"phi3": ChatOpenAI(model = "phi3", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
303 |
}
|
304 |
-
|
|
|
290 |
|
291 |
}
|
292 |
|
293 |
+
|
294 |
from langchain_openai import ChatOpenAI
|
295 |
import streamlit as st
|
296 |
+
# from langchain_openai.chat_models.base import BaseChatOpenAI
|
297 |
|
298 |
llm_options = {
|
299 |
+
# "llama-3.3-quantized": ChatOpenAI(model = "cirrus", api_key=st.secrets['CIRRUS_LLM_API_KEY'], base_url = "https://llm.cirrus.carlboettiger.info/v1", temperature=0),
|
300 |
+
"llama3.3": ChatOpenAI(model = "llama3-sdsc", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
301 |
"gemma3": ChatOpenAI(model = "gemma3", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
302 |
+
# "DeepSeek-R1-Distill-Qwen-32B": BaseChatOpenAI(model = "DeepSeek-R1-Distill-Qwen-32B", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
303 |
"watt": ChatOpenAI(model = "watt", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
304 |
+
# "phi3": ChatOpenAI(model = "phi3", api_key=st.secrets['NRP_API_KEY'], base_url = "https://llm.nrp-nautilus.io/", temperature=0),
|
305 |
}
|
|