chore: remove verbose comments from type_checking group

This commit is contained in:
Ashwin Bharambe 2025-10-28 06:00:54 -07:00
parent 01d1a2ffe9
commit 36c57e3b5b

View file

@ -78,7 +78,6 @@ dev = [
# Type checking dependencies - includes type stubs and optional runtime dependencies # Type checking dependencies - includes type stubs and optional runtime dependencies
# needed for complete mypy coverage across all optional features # needed for complete mypy coverage across all optional features
type_checking = [ type_checking = [
# Type stubs
"types-requests", "types-requests",
"types-setuptools", "types-setuptools",
"types-jsonschema", "types-jsonschema",
@ -86,26 +85,25 @@ type_checking = [
"types-psutil", "types-psutil",
"types-tqdm", "types-tqdm",
"boto3-stubs[s3]", "boto3-stubs[s3]",
# Optional runtime dependencies for type checking "streamlit",
"streamlit", # For UI type checking "streamlit-option-menu",
"streamlit-option-menu", # For UI type checking "pandas",
"pandas", # For UI and data processing type checking "anthropic",
"anthropic", # For Anthropic provider type checking "databricks-sdk",
"databricks-sdk", # For Databricks provider type checking "fairscale",
"fairscale", # For model parallelism type checking "torchtune",
"torchtune", # For fine-tuning type checking "trl",
"trl", # For HuggingFace training type checking "peft",
"peft", # For HuggingFace LoRA/QLoRA fine-tuning type checking "datasets",
"datasets", # For dataset loading type checking "together",
"together", # For Together AI provider type checking "nest-asyncio",
"nest-asyncio", # For library client type checking "pymongo",
"pymongo", # For MongoDB kvstore type checking "torchvision",
"torchvision", # For multimodal model type checking "sqlite-vec",
"sqlite-vec", # For SQLite vector store type checking "faiss-cpu",
"faiss-cpu", # For Faiss vector store type checking "lm-format-enforcer",
"lm-format-enforcer", # For constrained generation type checking "mcp",
"mcp", # For Model Context Protocol tools type checking "ollama",
"ollama", # For Ollama provider type checking
] ]
# These are the dependencies required for running unit tests. # These are the dependencies required for running unit tests.
unit = [ unit = [