AI Connectors
This directory contains the implementation of the AI connectors (aka AI services) that are used to interact with AI models.
Depending on the modality, the AI connector can inherit from one of the following classes:
ChatCompletionClientBasefor chat completion tasks.TextCompletionClientBasefor text completion tasks.AudioToTextClientBasefor audio to text tasks.TextToAudioClientBasefor text to audio tasks.TextToImageClientBasefor text to image tasks.EmbeddingGeneratorBasefor text embedding tasks.
All base clients inherit from the AIServiceClientBase class.