forked from phoenix/litellm-mirror
* refactor: cleanup unused variables + fix pyright errors * feat(health_check.py): Closes https://github.com/BerriAI/litellm/issues/5686 * fix(o1_reasoning.py): add stricter check for o-1 reasoning model * refactor(mistral/): make it easier to see mistral transformation logic * fix(openai.py): fix openai o-1 model param mapping Fixes https://github.com/BerriAI/litellm/issues/5685 * feat(main.py): infer finetuned gemini model from base model Fixes https://github.com/BerriAI/litellm/issues/5678 * docs(vertex.md): update docs to call finetuned gemini models * feat(proxy_server.py): allow admin to hide proxy model aliases Closes https://github.com/BerriAI/litellm/issues/5692 * docs(load_balancing.md): add docs on hiding alias models from proxy config * fix(base.py): don't raise notimplemented error * fix(user_api_key_auth.py): fix model max budget check * fix(router.py): fix elif * fix(user_api_key_auth.py): don't set team_id to empty str * fix(team_endpoints.py): fix response type * test(test_completion.py): handle predibase error * test(test_proxy_server.py): fix test * fix(o1_transformation.py): fix max_completion_token mapping * test(test_image_generation.py): mark flaky test
44 lines
No EOL
1.2 KiB
YAML
44 lines
No EOL
1.2 KiB
YAML
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: pyright
|
|
name: pyright
|
|
entry: pyright
|
|
language: system
|
|
types: [python]
|
|
files: ^litellm/
|
|
- id: isort
|
|
name: isort
|
|
entry: isort
|
|
language: system
|
|
types: [python]
|
|
files: litellm/.*\.py
|
|
exclude: ^litellm/__init__.py$
|
|
- repo: https://github.com/psf/black
|
|
rev: 24.2.0
|
|
hooks:
|
|
- id: black
|
|
- repo: https://github.com/pycqa/flake8
|
|
rev: 7.0.0 # The version of flake8 to use
|
|
hooks:
|
|
- id: flake8
|
|
exclude: ^litellm/tests/|^litellm/proxy/tests/
|
|
additional_dependencies: [flake8-print]
|
|
files: litellm/.*\.py
|
|
- repo: https://github.com/python-poetry/poetry
|
|
rev: 1.8.0
|
|
hooks:
|
|
- id: poetry-check
|
|
- repo: local
|
|
hooks:
|
|
- id: check-files-match
|
|
name: Check if files match
|
|
entry: python3 ci_cd/check_files_match.py
|
|
language: system
|
|
# - id: check-file-length
|
|
# name: Check file length
|
|
# entry: python check_file_length.py
|
|
# args: ["10000"] # set your desired maximum number of lines
|
|
# language: python
|
|
# files: litellm/.*\.py
|
|
# exclude: ^litellm/tests/ |