From f628680f09d550a1c3563978ecda2ace3db69c6b Mon Sep 17 00:00:00 2001 From: Mambo56 <91324873+Mambo56@users.noreply.github.com> Date: Tue, 30 Apr 2024 10:09:04 +0300 Subject: [PATCH] llama3 models update --- streamlit/kab.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/streamlit/kab.py b/streamlit/kab.py index 32fe830..4511889 100644 --- a/streamlit/kab.py +++ b/streamlit/kab.py @@ -16,7 +16,7 @@ def icon(emoji: str): icon("🏎️") -st.title("JONTE GPT", anchor=False) +st.title("MAMBOGPT", anchor=False) client = Groq( api_key=st.secrets["GROQ_API_KEY"], @@ -29,7 +29,10 @@ def icon(emoji: str): # Define model details models = { "llama2-70b-4096": {"name": "LLaMA2-70b-chat", "tokens": 4096, "developer": "Meta"}, - "mixtral-8x7b-32768": {"name": "Mixtral-8x7b-Instruct-v0.1", "tokens": 32768, "developer": "Mistral"} + "mixtral-8x7b-32768": {"name": "Mixtral-8x7b-Instruct-v0.1", "tokens": 32768, "developer": "Mistral"}, + "llama2-70b-4096": {"name": "LLaMA2-70b-chat", "tokens": 4096, "developer": "Meta"}, + "llama3-70b-8192": {"name": "LLaMA3-70b-8192", "tokens": 8192, "developer": "Meta"}, + "llama3-8b-8192": {"name": "LLaMA3-8b-8192", "tokens": 8192, "developer": "Meta"} }