ConnectorsConfig Schema
The ConnectorsConfig schema represents the configuration for service connectors in the ConfidentialMind system. It defines the connections between different services or resources.
Properties
| Property | Type | Description |
|---|---|---|
| connectors | Connector[] | Array of connector configurations |
Connector
| Property | Type | Description |
|---|---|---|
| type | ConnectorType | Type of the connector |
| label | string | Label for the connector |
| config_id | string | Configuration ID for the connector |
| stack_id | string | null | Optional stack ID |
Enums
ConnectorType
llmbucketdatabaseapi
Usage
This schema is used as part of the connectors field in the ServiceEntrySchema. It defines the connections between different services or resources in the ConfidentialMind system.
Example
{
"connectors": [
{
"type": "database",
"label": "Main Database",
"config_id": "db-001",
"stack_id": null
},
{
"type": "llm",
"label": "Language Model",
"config_id": "llm-002",
"stack_id": "stack-123"
}
]
}
This schema is crucial for defining the relationships and connections between various components within the ConfidentialMind ecosystem.