Skip to content

Commit 4777eb5

Browse files
Merge pull request #348 from UiPath/feat/llm-models-export
feat: export all chat models and add other supported LLMs
2 parents 61a7983 + ac693e5 commit 4777eb5

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-langchain"
3-
version = "0.1.28"
3+
version = "0.1.29"
44
description = "Python SDK that enables developers to build and deploy LangGraph agents to the UiPath Cloud Platform"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath_langchain/chat/supported_models.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,21 @@ class OpenAIModels:
2121
# GPT-5.1 models
2222
gpt_5_1_2025_11_13 = "gpt-5.1-2025-11-13"
2323

24+
# GPT-5.2 models
25+
gpt_5_2_2025_12_11 = "gpt-5.2-2025-12-11"
26+
2427

2528
class GeminiModels:
2629
"""Supported Google Gemini model identifiers."""
2730

31+
# Gemini 2 models
2832
gemini_2_5_pro = "gemini-2.5-pro"
2933
gemini_2_5_flash = "gemini-2.5-flash"
3034
gemini_2_0_flash_001 = "gemini-2.0-flash-001"
3135

36+
# Gemini 3 models
37+
gemini_3_pro_preview = "gemini-3-pro-preview"
38+
3239

3340
class BedrockModels:
3441
"""Supported AWS Bedrock model identifiers."""
@@ -38,5 +45,7 @@ class BedrockModels:
3845

3946
# Claude 4 models
4047
anthropic_claude_sonnet_4 = "anthropic.claude-sonnet-4-20250514-v1:0"
48+
49+
# Claude 4.5 models
4150
anthropic_claude_sonnet_4_5 = "anthropic.claude-sonnet-4-5-20250929-v1:0"
4251
anthropic_claude_haiku_4_5 = "anthropic.claude-haiku-4-5-20251001-v1:0"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)