Files
OpenLLM/pyrightconfig.json
Aaron Pham 072b3e97ec feat: 1.2 APIs (#821)
Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2024-03-15 03:49:19 -04:00

35 lines
1020 B
JSON

{
"useLibraryCodeForTypes": true,
"typeCheckingMode": "strict",
"verboseOutput": true,
"include": ["openllm-core/src", "openllm-client/src", "openllm-python/src"],
"define": {
"MYPY": true
},
"venvPath": ".",
"venv": ".venv",
"exclude": [
"cz.py",
"tools",
"examples",
"typings",
"openllm-python/src/openllm/playground/",
"openllm-python/src/openllm/models/",
"openllm-python/src/openllm/__init__.py",
"openllm-python/src/openllm/__main__.py",
"openllm-python/tests",
"openllm-core/src/openllm_core/_typing_compat.py",
"openllm-client/src/openllm_client/pb/**"
],
"pythonVersion": "3.12",
"enableExperimentalFeatures": true,
"reportMissingImports": "warning",
"reportMissingTypeStubs": false,
"reportPrivateUsage": "warning",
"reportUnknownArgumentType": "warning",
"reportUnknownMemberType": "warning",
"reportUnknownVariableType": "warning",
"reportUnsupportedDunderAll": "warning",
"reportWildcardImportFromLibrary": "warning"
}