Merge pull request #32 from joshuasundance-swca/update
Browse files
langchain-streamlit-demo/app.py
CHANGED
@@ -28,7 +28,7 @@ __version__ = "0.0.2"
|
|
28 |
|
29 |
# --- Initialization ---
|
30 |
st.set_page_config(
|
31 |
-
page_title="langchain-streamlit-demo",
|
32 |
page_icon="🦜",
|
33 |
)
|
34 |
|
@@ -84,6 +84,7 @@ MODEL_DICT = {
|
|
84 |
"meta-llama/Llama-2-7b-chat-hf": "Anyscale Endpoints",
|
85 |
"meta-llama/Llama-2-13b-chat-hf": "Anyscale Endpoints",
|
86 |
"meta-llama/Llama-2-70b-chat-hf": "Anyscale Endpoints",
|
|
|
87 |
}
|
88 |
SUPPORTED_MODELS = list(MODEL_DICT.keys())
|
89 |
|
|
|
28 |
|
29 |
# --- Initialization ---
|
30 |
st.set_page_config(
|
31 |
+
page_title=f"langchain-streamlit-demo v{__version__}",
|
32 |
page_icon="🦜",
|
33 |
)
|
34 |
|
|
|
84 |
"meta-llama/Llama-2-7b-chat-hf": "Anyscale Endpoints",
|
85 |
"meta-llama/Llama-2-13b-chat-hf": "Anyscale Endpoints",
|
86 |
"meta-llama/Llama-2-70b-chat-hf": "Anyscale Endpoints",
|
87 |
+
"codellama/CodeLlama-34b-Instruct-hf": "Anyscale Endpoints",
|
88 |
}
|
89 |
SUPPORTED_MODELS = list(MODEL_DICT.keys())
|
90 |
|