Skip to content

Commit

Permalink
add ChatNVIDIA support for google/gemma-2b, google/codegemma-7b, and …
Browse files Browse the repository at this point in the history
…google/recurrentgemma-2b
  • Loading branch information
mattf committed Apr 10, 2024
1 parent 4ce4f6a commit 7682885
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions libs/ai-endpoints/langchain_nvidia_ai_endpoints/_statics.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,12 @@ class Model(BaseModel):
# 'ai-reranking-4b': {'model_type': 'chat'},
# 'ai-sdxl-turbo': {'model_type': 'image_out'},
# 'ai-stable-diffusion-xl-base': {'model_type': 'iamge_out'},
"ai-codegemma-7b": {"model_type": "chat", "model_name": "google/codegemma-7b"},
"ai-recurrentgemma-2b": {
"model_type": "chat",
"model_name": "google/recurrentgemma-2b",
},
"ai-gemma-2b": {"model_type": "chat", "model_name": "google/gemma-2b"},
}
)

Expand Down

0 comments on commit 7682885

Please sign in to comment.