[OpenAI Extension] Add more types to Embeddings Endpoint (#4895)

This commit is contained in:
Felipe Ferreira 2023-12-15 00:26:16 -03:00 committed by GitHub
parent e53f99faa0
commit 11f082e417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -120,7 +120,7 @@ class ChatCompletionResponse(BaseModel):
class EmbeddingsRequest(BaseModel):
input: str | List[str]
input: str | List[str] | List[int] | List[List[int]]
model: str | None = Field(default=None, description="Unused parameter. To change the model, set the OPENEDAI_EMBEDDING_MODEL and OPENEDAI_EMBEDDING_DEVICE environment variables before starting the server.")
encoding_format: str = Field(default="float", description="Can be float or base64.")
user: str | None = Field(default=None, description="Unused parameter.")