Merge branch 'main' into update-api-docs

This commit is contained in:
Sai Prashanth S 2025-07-25 09:32:28 -07:00 committed by GitHub
commit cd16c72cdf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
136 changed files with 4279 additions and 1465 deletions

View file

@ -911,12 +911,6 @@ class OpenAIEmbeddingsResponse(BaseModel):
class ModelStore(Protocol):
async def get_model(self, identifier: str) -> Model: ...
async def update_registered_llm_models(
self,
provider_id: str,
models: list[Model],
) -> None: ...
class TextTruncation(Enum):
"""Config for how to truncate text for embedding when text is longer than the model's max sequence length. Start and End semantics depend on whether the language is left-to-right or right-to-left.