diff --git a/testcases/chat-models/pyproject.toml b/testcases/chat-models/pyproject.toml index 10d248d75..bcfb4884c 100644 --- a/testcases/chat-models/pyproject.toml +++ b/testcases/chat-models/pyproject.toml @@ -19,5 +19,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/company-research-agent/pyproject.toml b/testcases/company-research-agent/pyproject.toml index 00daf4749..bc80c6c3d 100644 --- a/testcases/company-research-agent/pyproject.toml +++ b/testcases/company-research-agent/pyproject.toml @@ -18,6 +18,16 @@ dev = ["mypy>=1.11.1", "ruff>=0.6.1"] [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/debug-breakpoints/pyproject.toml b/testcases/debug-breakpoints/pyproject.toml index 1f5f6a4dd..c57ed458d 100644 --- a/testcases/debug-breakpoints/pyproject.toml +++ b/testcases/debug-breakpoints/pyproject.toml @@ -21,6 +21,16 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/dev-console/pyproject.toml b/testcases/dev-console/pyproject.toml index 59a4a69bb..7cda2d27c 100644 --- a/testcases/dev-console/pyproject.toml +++ b/testcases/dev-console/pyproject.toml @@ -21,6 +21,16 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/init-flow/pyproject.toml b/testcases/init-flow/pyproject.toml index 16afa2702..78cfb0dec 100644 --- a/testcases/init-flow/pyproject.toml +++ b/testcases/init-flow/pyproject.toml @@ -12,5 +12,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/model-onboarding/pyproject.toml b/testcases/model-onboarding/pyproject.toml index 8e2fc89c1..647e05262 100644 --- a/testcases/model-onboarding/pyproject.toml +++ b/testcases/model-onboarding/pyproject.toml @@ -15,5 +15,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/multimodal-invoke/pyproject.toml b/testcases/multimodal-invoke/pyproject.toml index 4fb7b9d78..a6ffa1345 100644 --- a/testcases/multimodal-invoke/pyproject.toml +++ b/testcases/multimodal-invoke/pyproject.toml @@ -15,5 +15,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/multimodal-invoke/src/main.py b/testcases/multimodal-invoke/src/main.py index 62ae4b46a..0c182e360 100644 --- a/testcases/multimodal-invoke/src/main.py +++ b/testcases/multimodal-invoke/src/main.py @@ -97,9 +97,13 @@ def _create_model(config: ModelTestConfig, client_settings: UiPathBaseSettings) FILES_TO_TEST = [ FileInfo( - url="https://www.w3schools.com/css/img_5terre.jpg", - name="img_5terre.jpg", - mime_type="image/jpeg", + url=( + "https://raw.githubusercontent.com/UiPath/uipath-langchain-python/" + "241b5addd4c040720c05f28d819dbc4b885b92eb/" + "docs/quick_start_images/invoke_output_light.png" + ), + name="invoke_output_light.png", + mime_type="image/png", ), FileInfo( url="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf", diff --git a/testcases/simple-local-mcp/pyproject.toml b/testcases/simple-local-mcp/pyproject.toml index a9cf7dca0..71a10aacd 100644 --- a/testcases/simple-local-mcp/pyproject.toml +++ b/testcases/simple-local-mcp/pyproject.toml @@ -22,5 +22,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/template-agent/pyproject.toml b/testcases/template-agent/pyproject.toml index 9f0e1b21f..2d9dc003f 100644 --- a/testcases/template-agent/pyproject.toml +++ b/testcases/template-agent/pyproject.toml @@ -11,5 +11,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true } diff --git a/testcases/ticket-classification/pyproject.toml b/testcases/ticket-classification/pyproject.toml index d8667a0e8..27fdc8985 100644 --- a/testcases/ticket-classification/pyproject.toml +++ b/testcases/ticket-classification/pyproject.toml @@ -20,5 +20,15 @@ requires-python = ">=3.11" [tool.uv] exclude-newer = "2 days" +[tool.uv.exclude-newer-package] +uipath = false +uipath-core = false +uipath-platform = false +uipath-runtime = false +uipath-dev = false +uipath-langchain-client = false +uipath-llm-client = false +jsonschema-pydantic-converter = false + [tool.uv.sources] uipath-langchain = { path = "../../", editable = true }