Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
39 changes: 39 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -1217,6 +1219,16 @@ var agentsService = serviceProvider.GetService<IAgentsService>();

<br /><br />

## 🗣️ Transcription Service
Coming...

<br /><br />

## 👁️ Vision Service
Coming...

<br /><br />

## 🔌 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.
Expand Down Expand Up @@ -1467,6 +1479,18 @@ For minimal configuration, you only need to provide **Endpoint**, **API Key**, a
"Model": {
"Name": "<your-chat-model>",
}
},
"Transcription": {
"Model": {
"Name": null
}
},
"Vision": {
"Model": {
"Name": null
}
},
"Plugins": {
}
}
}
Expand Down Expand Up @@ -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": {
},
Expand Down
6 changes: 3 additions & 3 deletions Vivet.AI/Vivet.AI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<AssemblyVersion>0.10.0.0</AssemblyVersion>
<FileVersion>0.10.0.0</FileVersion>
<Version>0.10.0.0-preview-1</Version>
<AssemblyVersion>0.10.1.0</AssemblyVersion>
<FileVersion>0.10.1.0</FileVersion>
<Version>0.10.1.0-preview</Version>
<PlatformTarget>AnyCPU</PlatformTarget>
<LangVersion>latest</LangVersion>
<Authors>Michael Vivet</Authors>
Expand Down
Loading