EmbedderResponse Model
EmbedderResponse Model documentation for Python SDK
Embedder configuration information
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| embedder_id | str | Unique identifier of the embedder | |
| display_name | str | User-facing name of the embedder | |
| description | str | Description of the embedder | [optional] |
| provider_type | ProviderType | ||
| endpoint_url | str | API endpoint URL | |
| api_path | str | API path for embeddings request | |
| model_identifier | str | Model identifier | |
| dimensionality | int | Output vector dimensions | |
| distribution_type | DistributionType | ||
| max_sequence_length | int | Maximum input sequence length | [optional] |
| supported_modalities | List[Modality] | Supported content modalities | [optional] |
| labels | Dict[str, str] | User-defined labels for categorization | [optional] |
| version | str | Version information | [optional] |
| monitoring_endpoint | str | Monitoring endpoint URL | [optional] |
| owner_id | str | Owner ID of the embedder | |
| created_at | int | Creation timestamp (milliseconds since epoch) | |
| updated_at | int | Last update timestamp (milliseconds since epoch) | |
| created_by_id | str | ID of the user who created the embedder | |
| updated_by_id | str | ID of the user who last updated the embedder |
Example
from goodmem_client.models.embedder_response import EmbedderResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EmbedderResponse from a JSON string
embedder_response_instance = EmbedderResponse.from_json(json)
# print the JSON string representation of the object
print(EmbedderResponse.to_json())
# convert the object into a dict
embedder_response_dict = embedder_response_instance.to_dict()
# create an instance of EmbedderResponse from a dict
embedder_response_from_dict = EmbedderResponse.from_dict(embedder_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK