From 403e802855301d27e6510ed4e78a95529ba5c5fa Mon Sep 17 00:00:00 2001 From: vivet Date: Fri, 31 Oct 2025 13:50:55 +0100 Subject: [PATCH 1/5] Updated README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 247ccac..b370b4c 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,8 @@ _Based on [Microsoft.SemanticKernel](https://learn.microsoft.com/en-us/semantic-         đŸ—‚ī¸ [Metadata](#%EF%B8%8F-metadata-service)         âœ‚ī¸ [Summarization](#%EF%B8%8F-summarization-service)         đŸ•šī¸ [Agents](#%EF%B8%8F-agents-service) +        đŸ—Ŗī¸ [Transcription](#%EF%B8%8F-transcription) +        đŸ‘ī¸ [Vision](#%EF%B8%8F-vision) ### 🔌 [Plugins](#-plugins-1)         đŸ§Š [Built-In Plugins](#-built-in-plugins) @@ -1217,6 +1219,16 @@ var agentsService = serviceProvider.GetService();

+## đŸ—Ŗī¸ Transcription Service +Coming... + +

+ +## đŸ‘ī¸ Vision Service +Coming... + +

+ ## 🔌 Plugins **Plugins** (also called *tools*) are sets of related functions that can be exposed to a chat model. They allow the model to integrate with external services or invoke custom functionality dynamically. From d376b1535c512919ae030a20e3553bc1f42f2182 Mon Sep 17 00:00:00 2001 From: vivet Date: Fri, 31 Oct 2025 13:52:54 +0100 Subject: [PATCH 2/5] Updated --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index b370b4c..d836e4e 100644 --- a/README.md +++ b/README.md @@ -1672,6 +1672,21 @@ For minimal configuration, you only need to provide **Endpoint**, **API Key**, a "EnableWebSearchPlugin": true } }, + "Transcription": { + "Model": { + "Name": null, + "UseHealthCheck": true + }, + "IncludeWordGranularity": false, + "Timeout": "00:01:00" + }, + "Vision": { + "Model": { + "Name": null, + "UseHealthCheck": true + }, + "Timeout": "00:01:00" + }, "Plugins": { "Memory": { }, From d05f251d92c549813fef905849d7bf23574ecf98 Mon Sep 17 00:00:00 2001 From: vivet Date: Fri, 31 Oct 2025 13:54:37 +0100 Subject: [PATCH 3/5] Updated --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index d836e4e..e34046d 100644 --- a/README.md +++ b/README.md @@ -1479,6 +1479,18 @@ For minimal configuration, you only need to provide **Endpoint**, **API Key**, a "Model": { "Name": "", } + }, + "Transcription": { + "Model": { + "Name": null + } + }, + "Vision": { + "Model": { + "Name": null + } + }, + "Plugins": { } } } From 3d6962fb4c52309e91dad7be4e39d341303bc811 Mon Sep 17 00:00:00 2001 From: vivet Date: Fri, 31 Oct 2025 13:56:25 +0100 Subject: [PATCH 4/5] Updated --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e34046d..e85da94 100644 --- a/README.md +++ b/README.md @@ -42,8 +42,8 @@ _Based on [Microsoft.SemanticKernel](https://learn.microsoft.com/en-us/semantic-         đŸ—‚ī¸ [Metadata](#%EF%B8%8F-metadata-service)         âœ‚ī¸ [Summarization](#%EF%B8%8F-summarization-service)         đŸ•šī¸ [Agents](#%EF%B8%8F-agents-service) -        đŸ—Ŗī¸ [Transcription](#%EF%B8%8F-transcription) -        đŸ‘ī¸ [Vision](#%EF%B8%8F-vision) +        đŸ—Ŗī¸ [Transcription](#%EF%B8%8F-transcription-service) +        đŸ‘ī¸ [Vision](#%EF%B8%8F-vision-service) ### 🔌 [Plugins](#-plugins-1)         đŸ§Š [Built-In Plugins](#-built-in-plugins) From 7ea4587d7234c8e5cbdb43e2d877bec8b0c169d6 Mon Sep 17 00:00:00 2001 From: vivet Date: Fri, 31 Oct 2025 14:13:56 +0100 Subject: [PATCH 5/5] Updated version --- .github/workflows/build-and-deploy.yml | 2 +- Vivet.AI/Vivet.AI.csproj | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-deploy.yml b/.github/workflows/build-and-deploy.yml index 9b97c3c..e036dc5 100644 --- a/.github/workflows/build-and-deploy.yml +++ b/.github/workflows/build-and-deploy.yml @@ -8,7 +8,7 @@ on: - master env: APP_NAME: Vivet.AI - VERSION: 0.10.0-preview + VERSION: 0.10.1-preview NUGET_HOST: https://api.nuget.org/v3/index.json NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }} jobs: diff --git a/Vivet.AI/Vivet.AI.csproj b/Vivet.AI/Vivet.AI.csproj index 71ecd6b..1a4858d 100644 --- a/Vivet.AI/Vivet.AI.csproj +++ b/Vivet.AI/Vivet.AI.csproj @@ -2,9 +2,9 @@ net8.0;net9.0 - 0.10.0.0 - 0.10.0.0 - 0.10.0.0-preview-1 + 0.10.1.0 + 0.10.1.0 + 0.10.1.0-preview AnyCPU latest Michael Vivet