RemoteConnection
Connection configuration for AI services using named connections.
Class Diagram
Section titled “Class Diagram”---
title: RemoteConnection
config:
look: handDrawn
theme: colorful
class:
hideEmptyMembersBox: true
---
classDiagram
class Connection {
+string kind
+string authenticationMode
+string usageDescription
}
Connection <|-- RemoteConnection
class RemoteConnection {
+string kind
+string name
+string endpoint
}
Yaml Example
Section titled “Yaml Example”kind: remotename: my-reference-connectionendpoint: https://{your-custom-endpoint}.openai.azure.com/Properties
Section titled “Properties”| Name | Type | Description |
|---|---|---|
| kind | string | The Authentication kind for the AI service (e.g., ‘key’ for API key, ‘oauth’ for OAuth tokens) |
| name | string | The name of the connection |
| endpoint | string | The endpoint URL for the AI service |