SpaceEmbedderConfig Configuration
SpaceEmbedderConfig Configuration documentation for Python SDK
Configuration for associating an embedder with a space.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| embedder_id | str | The unique identifier for the embedder to associate with the space. | |
| default_retrieval_weight | float | The default weight for this embedder during retrieval operations. |
Example
from goodmem_client.models.space_embedder_config import SpaceEmbedderConfig
# TODO update the JSON string below
json = "{}"
# create an instance of SpaceEmbedderConfig from a JSON string
space_embedder_config_instance = SpaceEmbedderConfig.from_json(json)
# print the JSON string representation of the object
print(SpaceEmbedderConfig.to_json())
# convert the object into a dict
space_embedder_config_dict = space_embedder_config_instance.to_dict()
# create an instance of SpaceEmbedderConfig from a dict
space_embedder_config_from_dict = SpaceEmbedderConfig.from_dict(space_embedder_config_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK