RerankerResponse Model
RerankerResponse Model documentation for Python SDK
Reranker configuration information
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| reranker_id | str | Unique identifier of the reranker | |
| display_name | str | User-facing name of the reranker | |
| description | str | Description of the reranker | [optional] |
| provider_type | ProviderType | ||
| endpoint_url | str | API endpoint URL | |
| api_path | str | API path for reranking request | |
| model_identifier | str | Model identifier | |
| 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 reranker | |
| 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 reranker | |
| updated_by_id | str | ID of the user who last updated the reranker |
Example
from goodmem_client.models.reranker_response import RerankerResponse
# TODO update the JSON string below
json = "{}"
# create an instance of RerankerResponse from a JSON string
reranker_response_instance = RerankerResponse.from_json(json)
# print the JSON string representation of the object
print(RerankerResponse.to_json())
# convert the object into a dict
reranker_response_dict = reranker_response_instance.to_dict()
# create an instance of RerankerResponse from a dict
reranker_response_from_dict = RerankerResponse.from_dict(reranker_response_dict)↑ Back to Python SDK ↑ Back to Python SDK ↑ Back to Python SDK