Merge branch 'main' into feature/computer/typescript

This commit is contained in:
Morgan Dean
2025-06-24 10:43:19 -07:00
4 changed files with 200 additions and 43 deletions

View File

@@ -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'"
]

View File

@@ -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]