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/README.md b/README.md index 247ccac..e85da94 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-service) +        đŸ‘ī¸ [Vision](#%EF%B8%8F-vision-service) ### 🔌 [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. @@ -1467,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": { } } } @@ -1660,6 +1684,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": { }, 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