Skip to content

Commit

Permalink
Merge pull request #128 from mattf/add-chat-models
Browse files Browse the repository at this point in the history
add chat models: qwen/qwen2.5-coder-32b-instruct, qwen/qwen2.5-coder-7b-instruct, nvidia/llama-3.1-nemotron-70b-reward
  • Loading branch information
mattf authored Jan 13, 2025
2 parents a7d8dc3 + e533395 commit 62b1552
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions libs/ai-endpoints/langchain_nvidia_ai_endpoints/_statics.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,6 +493,21 @@ def validate_client(self) -> "Model":
supports_tools=True,
supports_structured_output=True,
),
"qwen/qwen2.5-coder-32b-instruct": Model(
id="qwen/qwen2.5-coder-32b-instruct",
model_type="chat",
client="ChatNVIDIA",
),
"qwen/qwen2.5-coder-7b-instruct": Model(
id="qwen/qwen2.5-coder-7b-instruct",
model_type="chat",
client="ChatNVIDIA",
),
"nvidia/llama-3.1-nemotron-70b-reward": Model(
id="nvidia/llama-3.1-nemotron-70b-reward",
model_type="chat",
client="ChatNVIDIA",
),
}

QA_MODEL_TABLE = {
Expand Down

0 comments on commit 62b1552

Please sign in to comment.