Allow custom semantic backend?
See original GitHub issueHi 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)
Issue Analytics
- State:
- Created 6 months ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Backends (Company User Manual)
Execute command M-x customize-group RET <backend-name> . ... Having enabled semantic-mode makes it to be used by the CAPF mechanism (see (emacs)Symbol ...
Read more >Semantic Segmentation with Open3D-ML, PyTorch ...
Semantic Segmentation with Open3D-ML, PyTorch Backend, and a Custom ... Add path to the SemanticKitti dataset and your own custom dataset
Read more >Building semantic memory with embeddings
Building semantic memory with embeddings · In this article · 1) Import the SDK · 2) Instantiate the kernel with memory · 3)...
Read more >Custom Backend
Hi, I want to create a custom backend. Any pointers on how to enable this would be great. thanks !! m ... I...
Read more >How to Configure Custom Fiori App for SAP Transaction ...
Activities to be performed in S/4 (Backend) System. Go to transaction SE93and verify whether the transaction is marked as SAP GUI for HTML....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@LittleLittleCloud as @timlaverty we’re actively working on this.
In the meantime, just in case you are blocked, by the design the kernel allows to plug in any function that implements the ISKFunction interface. So, only if this is urgent, this is one available path to integrate any model not yet supported.
This is now in the main branch, @LittleLittleCloud thanks for the feedback!