Skip to content

Commit

Permalink
address server side model renaming for ai-llama3-8b, ai-llama3-70b, a…
Browse files Browse the repository at this point in the history
…nd ai-phi-3-mini
  • Loading branch information
mattf committed Apr 25, 2024
1 parent cf179e0 commit 460eb55
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions libs/ai-endpoints/langchain_nvidia_ai_endpoints/_statics.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,15 @@ class Model(BaseModel):
"model_type": "chat",
"model_name": "mistralai/mixtral-8x22b-instruct-v0.1",
},
"ai-llama3-8b": {"model_type": "chat", "model_name": "meta/llama3-8b"},
"ai-llama3-8b": {"model_type": "chat", "model_name": "meta/llama3-8b-instruct"},
"ai-llama3-70b": {
"model_type": "chat",
"model_name": "meta/llama3-70b",
"model_name": "meta/llama3-70b-instruct",
},
"ai-phi-3-mini": {
"model_type": "chat",
"model_name": "microsoft/phi-3-mini-128k-instruct",
},
"ai-phi-3-mini": {"model_type": "chat", "model_name": "microsoft/phi-3-mini"},
"ai-arctic": {"model_type": "chat", "model_name": "snowflake/arctic"},
}
)
Expand Down
2 changes: 1 addition & 1 deletion libs/ai-endpoints/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "langchain-nvidia-ai-endpoints"
version = "0.0.10"
version = "0.0.11"
description = "An integration package connecting NVIDIA AI Endpoints and LangChain"
authors = []
readme = "README.md"
Expand Down

0 comments on commit 460eb55

Please sign in to comment.