From 15cfd4d3e4a1d2b4d74607606beaa47b40b3b296 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Mon, 23 Jun 2025 12:32:29 -0400 Subject: [PATCH] Update dependencies for agent and computer libs --- libs/agent/pyproject.toml | 70 ++++++++++++++++++------------------ libs/computer/pyproject.toml | 12 +++---- 2 files changed, 41 insertions(+), 41 deletions(-) diff --git a/libs/agent/pyproject.toml b/libs/agent/pyproject.toml index f078a5c9..a87d72b6 100644 --- a/libs/agent/pyproject.toml +++ b/libs/agent/pyproject.toml @@ -11,14 +11,14 @@ authors = [ { name = "TryCua", email = "gh@trycua.com" } ] dependencies = [ - "httpx>=0.27.0,<0.29.0", - "aiohttp>=3.9.3,<4.0.0", + "httpx>=0.27.0", + "aiohttp>=3.9.3", "asyncio", - "anyio>=4.4.1,<5.0.0", - "typing-extensions>=4.12.2,<5.0.0", - "pydantic>=2.6.4,<3.0.0", - "rich>=13.7.1,<14.0.0", - "python-dotenv>=1.0.1,<2.0.0", + "anyio>=4.4.1", + "typing-extensions>=4.12.2", + "pydantic>=2.6.4", + "rich>=13.7.1", + "python-dotenv>=1.0.1", "cua-computer>=0.2.0,<0.3.0", "cua-core>=0.1.0,<0.2.0", "certifi>=2024.2.2" @@ -28,21 +28,21 @@ requires-python = ">=3.11" [project.optional-dependencies] anthropic = [ "anthropic>=0.49.0", - "boto3>=1.35.81,<2.0.0", + "boto3>=1.35.81", ] openai = [ - "openai>=1.14.0,<2.0.0", - "httpx>=0.27.0,<0.29.0", + "openai>=1.14.0", + "httpx>=0.27.0", ] uitars = [ - "httpx>=0.27.0,<0.29.0", + "httpx>=0.27.0", ] uitars-mlx = [ "mlx-vlm>=0.1.27; sys_platform == 'darwin'" ] ui = [ - "gradio>=5.23.3,<6.0.0", - "python-dotenv>=1.0.1,<2.0.0", + "gradio>=5.23.3", + "python-dotenv>=1.0.1", ] som = [ "torch>=2.2.1", @@ -51,12 +51,12 @@ som = [ "transformers>=4.38.2", "cua-som>=0.1.0,<0.2.0", # Include all provider dependencies - "anthropic>=0.46.0,<0.47.0", - "boto3>=1.35.81,<2.0.0", - "openai>=1.14.0,<2.0.0", - "groq>=0.4.0,<0.5.0", - "dashscope>=1.13.0,<2.0.0", - "requests>=2.31.0,<3.0.0" + "anthropic>=0.46.0", + "boto3>=1.35.81", + "openai>=1.14.0", + "groq>=0.4.0", + "dashscope>=1.13.0", + "requests>=2.31.0" ] omni = [ "torch>=2.2.1", @@ -64,13 +64,13 @@ omni = [ "ultralytics>=8.0.0", "transformers>=4.38.2", "cua-som>=0.1.0,<0.2.0", - "anthropic>=0.46.0,<0.47.0", - "boto3>=1.35.81,<2.0.0", - "openai>=1.14.0,<2.0.0", - "groq>=0.4.0,<0.5.0", - "dashscope>=1.13.0,<2.0.0", - "requests>=2.31.0,<3.0.0", - "ollama>=0.4.7,<0.5.0" + "anthropic>=0.46.0", + "boto3>=1.35.81", + "openai>=1.14.0", + "groq>=0.4.0", + "dashscope>=1.13.0", + "requests>=2.31.0", + "ollama>=0.4.7" ] all = [ # Include all optional dependencies @@ -79,15 +79,15 @@ all = [ "ultralytics>=8.0.0", "transformers>=4.38.2", "cua-som>=0.1.0,<0.2.0", - "anthropic>=0.46.0,<0.47.0", - "boto3>=1.35.81,<2.0.0", - "openai>=1.14.0,<2.0.0", - "groq>=0.4.0,<0.5.0", - "dashscope>=1.13.0,<2.0.0", - "requests>=2.31.0,<3.0.0", - "ollama>=0.4.7,<0.5.0", - "gradio>=5.23.3,<6.0.0", - "python-dotenv>=1.0.1,<2.0.0", + "anthropic>=0.46.0", + "boto3>=1.35.81", + "openai>=1.14.0", + "groq>=0.4.0", + "dashscope>=1.13.0", + "requests>=2.31.0", + "ollama>=0.4.7", + "gradio>=5.23.3", + "python-dotenv>=1.0.1", "mlx-vlm>=0.1.27; sys_platform == 'darwin'" ] diff --git a/libs/computer/pyproject.toml b/libs/computer/pyproject.toml index 04bd2dfb..4326eb98 100644 --- a/libs/computer/pyproject.toml +++ b/libs/computer/pyproject.toml @@ -26,15 +26,15 @@ lume = [ lumier = [ ] ui = [ - "gradio>=5.23.3,<6.0.0", - "python-dotenv>=1.0.1,<2.0.0", - "datasets>=3.6.0,<4.0.0", + "gradio>=5.23.3", + "python-dotenv>=1.0.1", + "datasets>=3.6.0", ] all = [ # Include all optional dependencies - "gradio>=5.23.3,<6.0.0", - "python-dotenv>=1.0.1,<2.0.0", - "datasets>=3.6.0,<4.0.0", + "gradio>=5.23.3", + "python-dotenv>=1.0.1", + "datasets>=3.6.0", ] [tool.pdm]