Hi folks, currently semantic kernel only allows us to use either OpenAI or Azure OpenAI as TextCompletion or Embedding backends. Is it possible for your team to add support for a customized TextCompletion backend? It will be helpful for developers who host their own GPT or AICG service.
use case
// my customized semantic backend
ITextCompletionClient myGossipTextClientInstance
IBackendConfig myGossipTextClientConfig
// suggested API to add config to kernel
kernel.Config.AddTextCompletionBackend(myGossipTextClientConfig, myGossipTextClientInstance)
Hi folks, currently
semantic kernelonly allows us to use eitherOpenAIorAzure OpenAIasTextCompletionorEmbeddingbackends. Is it possible for your team to add support for a customizedTextCompletionbackend? It will be helpful for developers who host their own GPT or AICG service.use case