Skip to content

Commit

Permalink
Merge pull request #123 from JoshuaC215/groq-llama-33-update
Browse files Browse the repository at this point in the history
Misc updates
  • Loading branch information
JoshuaC215 authored Dec 27, 2024
2 parents d465541 + cc669c3 commit c5105a3
Show file tree
Hide file tree
Showing 4 changed files with 62 additions and 19 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ classifiers = [
requires-python = ">=3.11, <3.13"

dependencies = [
"duckduckgo-search>=6.4.1",
"duckduckgo-search>=7.1.1",
"fastapi ~=0.115.5",
"httpx ~=0.27.2",
"langchain-core ~=0.3.20",
Expand Down
2 changes: 1 addition & 1 deletion src/core/llm.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
AnthropicModelName.SONNET_35: "claude-3-5-sonnet-latest",
GoogleModelName.GEMINI_15_FLASH: "gemini-1.5-flash",
GroqModelName.LLAMA_31_8B: "llama-3.1-8b-instant",
GroqModelName.LLAMA_31_70B: "llama-3.1-70b-versatile",
GroqModelName.LLAMA_33_70B: "llama-3.3-70b-versatile",
GroqModelName.LLAMA_GUARD_3_8B: "llama-guard-3-8b",
AWSModelName.BEDROCK_HAIKU: "anthropic.claude-3-5-haiku-20241022-v1:0",
FakeModelName.FAKE: "fake",
Expand Down
2 changes: 1 addition & 1 deletion src/schema/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class GroqModelName(StrEnum):
"""https://console.groq.com/docs/models"""

LLAMA_31_8B = "groq-llama-3.1-8b"
LLAMA_31_70B = "groq-llama-3.1-70b"
LLAMA_33_70B = "groq-llama-3.3-70b"

LLAMA_GUARD_3_8B = "groq-llama-guard-3-8b"

Expand Down
75 changes: 59 additions & 16 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5105a3

Please sign in to comment.