Spaces:
Runtime error
Runtime error
File size: 971 Bytes
13ba8fa e3597fb 13ba8fa 85b2bbc 13ba8fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
[project]
name = "infersense"
version = "0.1.0"
authors = [{ name = "Semih Berkay Ozturk" }]
dependencies = [
"gradio>=5.38.1",
"langchain-community>=0.3.27",
"langchain-core>=0.3.72",
"langchain-groq>=0.3.6",
"langchain-huggingface>=0.3.1",
"langgraph>=0.5.4",
"polars>=1.31.0",
"pytesseract>=0.3.13",
"supabase>=2.17.0",
]
[tool.ruff.lint]
extend-select = [
"F", # Pyflakes rules
"W", # PyCodeStyle warnings
"I", # Sort imports properly
"UP", # Warn if certain things can changed due to newer Python versions
"C4", # Catch incorrect use of comprehensions, dict, list, etc
"ISC", # Good use of string concatenation
"ICN", # Use common import conventions
"RET", # Good return practices
"SIM", # Common simplification rules
"TID", # Some good import practices
"TC", # Enforce importing certain types in a TYPE_CHECKING block
]
|