GoodMem
ReferenceClient SDKsPython SDKModels

EmbedderResponse Model

EmbedderResponse Model documentation for Python SDK

Embedder configuration information

Properties

NameTypeDescriptionNotes
embedder_idstrUnique identifier of the embedder
display_namestrUser-facing name of the embedder
descriptionstrDescription of the embedder[optional]
provider_typeProviderType
endpoint_urlstrAPI endpoint URL
api_pathstrAPI path for embeddings request
model_identifierstrModel identifier
dimensionalityintOutput vector dimensions
distribution_typeDistributionType
max_sequence_lengthintMaximum input sequence length[optional]
supported_modalitiesList[Modality]Supported content modalities[optional]
labelsDict[str, str]User-defined labels for categorization[optional]
versionstrVersion information[optional]
monitoring_endpointstrMonitoring endpoint URL[optional]
owner_idstrOwner ID of the embedder
created_atintCreation timestamp (milliseconds since epoch)
updated_atintLast update timestamp (milliseconds since epoch)
created_by_idstrID of the user who created the embedder
updated_by_idstrID 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

On this page