Skip to content

Commit

Permalink
llama3 models update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mambo56 authored Apr 30, 2024
1 parent c350f80 commit f628680
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions streamlit/kab.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand All @@ -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"}

}

Expand Down

0 comments on commit f628680

Please sign in to comment.