Skip to content

Commit

Permalink
Groq Llama 3
Browse files Browse the repository at this point in the history
  • Loading branch information
ashpreetbedi committed Apr 19, 2024
1 parent 79708fe commit 5ca796f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cookbook/llms/groq/rag/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# RAG with Groq & PgVector
# RAG with Llama3 on Groq

> Note: Fork and clone this repository if needed
Expand Down
2 changes: 1 addition & 1 deletion cookbook/llms/groq/rag/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def restart_assistant():
def main() -> None:
# Get model
rag_model = st.sidebar.selectbox(
"Select Model", options=["llama3-70b-8192", "llama3-8b-8192", "mixtral-8x7b-32768"]
"Select Model", options=["llama3-8b-8192", "llama3-70b-8192", "mixtral-8x7b-32768"]
)
# Set assistant_type in session state
if "rag_model" not in st.session_state:
Expand Down

0 comments on commit 5ca796f

Please sign in to comment.