createAIBridge
Establish OpenAI-compatible API communication with another AI agent by configuring unique identifiers, endpoints, models, and API keys for efficient interaction.
Instructions
Create a bridge to communicate with another AI agent via OpenAI-compatible API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
apiKey | No | API key if required | |
bridgeId | Yes | Unique identifier for this bridge | |
endpoint | No | API endpoint URL (required for custom provider) | |
endpointName | Yes | Name of configured endpoint or custom URL | |
model | No | Model to use |
Input Schema (JSON Schema)
{
"properties": {
"apiKey": {
"description": "API key if required",
"type": "string"
},
"bridgeId": {
"description": "Unique identifier for this bridge",
"type": "string"
},
"endpoint": {
"description": "API endpoint URL (required for custom provider)",
"type": "string"
},
"endpointName": {
"description": "Name of configured endpoint or custom URL",
"type": "string"
},
"model": {
"description": "Model to use",
"type": "string"
}
},
"required": [
"bridgeId",
"endpointName"
],
"type": "object"
}