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"} }