fix LiteLLMParams typing (#2285)
Some checks are pending
Run tests and pre-commit / test (push) Waiting to run
Run tests and pre-commit / fe-lint-build (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Sync to skyvern-cloud / sync (push) Waiting to run

This commit is contained in:
Shuchang Zheng 2025-05-04 01:02:01 -07:00 committed by GitHub
parent 8b834436b5
commit dbcc48833e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View file

@ -747,7 +747,7 @@ if settings.ENABLE_VERTEX_AI:
add_assistant_prefix=False,
max_completion_tokens=65535,
litellm_params=LiteLLMParams(
vertex_credentials=settings.VERTEX_CREDENTIALS, # type: ignore
vertex_credentials=settings.VERTEX_CREDENTIALS,
),
),
)
@ -760,7 +760,7 @@ if settings.ENABLE_VERTEX_AI:
add_assistant_prefix=False,
max_completion_tokens=65535,
litellm_params=LiteLLMParams(
vertex_credentials=settings.VERTEX_CREDENTIALS, # type: ignore
vertex_credentials=settings.VERTEX_CREDENTIALS,
),
),
)