From 64d4118f1cdc84e017cfaf1bee42312243777248 Mon Sep 17 00:00:00 2001 From: AKKO89 Date: Thu, 9 Jul 2026 05:32:50 +0800 Subject: [PATCH 1/2] docs: add TokenLab custom endpoint example --- dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md b/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md index 00cf243fc193..bf9f3e63243e 100644 --- a/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md +++ b/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md @@ -73,6 +73,14 @@ We have the two only specific cases where we attempted to auto-correct the endpo + http://any-host-and-port/v1 ``` + For example, an OpenAI-compatible provider such as TokenLab should be + configured with its root compatible endpoint: + + ```diff + - https://api.tokenlab.sh + + https://api.tokenlab.sh/v1 + ``` + ## 6. SemanticKernel MetaPackage To be retro compatible with the new OpenAI and AzureOpenAI Connectors, our `Microsoft.SemanticKernel` meta package changed its dependency to use the new `Microsoft.SemanticKernel.Connectors.AzureOpenAI` package that depends on the `Microsoft.SemanticKernel.Connectors.OpenAI` package. This way if you are using the metapackage, no change is needed to get access to `Azure` related types. From a037e337bbb36719cd3ec54613ec6a4f0f4962c6 Mon Sep 17 00:00:00 2001 From: hedging8563 Date: Sat, 11 Jul 2026 07:35:54 +0800 Subject: [PATCH 2/2] docs: clarify TokenLab base URL wording --- dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md b/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md index bf9f3e63243e..8066885908db 100644 --- a/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md +++ b/dotnet/docs/OPENAI-CONNECTOR-MIGRATION.md @@ -74,7 +74,7 @@ We have the two only specific cases where we attempted to auto-correct the endpo ``` For example, an OpenAI-compatible provider such as TokenLab should be - configured with its root compatible endpoint: + configured with its OpenAI-compatible base URL: ```diff - https://api.tokenlab.sh