Skip to content

Commit 00c26ac

Browse files
authored
0.10.1 preview (#5)
* Updated readme
1 parent 062ee87 commit 00c26ac

File tree

3 files changed

+43
-4
lines changed

3 files changed

+43
-4
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
- master
99
env:
1010
APP_NAME: Vivet.AI
11-
VERSION: 0.10.0-preview
11+
VERSION: 0.10.1-preview
1212
NUGET_HOST: https://api.nuget.org/v3/index.json
1313
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
1414
jobs:

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ _Based on [Microsoft.SemanticKernel](https://learn.microsoft.com/en-us/semantic-
4242
        🗂️ [Metadata](#%EF%B8%8F-metadata-service)
4343
        ✂️ [Summarization](#%EF%B8%8F-summarization-service)
4444
        🕹️ [Agents](#%EF%B8%8F-agents-service)
45+
        🗣️ [Transcription](#%EF%B8%8F-transcription-service)
46+
        👁️ [Vision](#%EF%B8%8F-vision-service)
4547

4648
### 🔌 [Plugins](#-plugins-1)
4749
        🧩 [Built-In Plugins](#-built-in-plugins)
@@ -1217,6 +1219,16 @@ var agentsService = serviceProvider.GetService<IAgentsService>();
12171219

12181220
<br /><br />
12191221

1222+
## 🗣️ Transcription Service
1223+
Coming...
1224+
1225+
<br /><br />
1226+
1227+
## 👁️ Vision Service
1228+
Coming...
1229+
1230+
<br /><br />
1231+
12201232
## 🔌 Plugins
12211233
**Plugins** (also called *tools*) are sets of related functions that can be exposed to a chat model.
12221234
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
14671479
"Model": {
14681480
"Name": "<your-chat-model>",
14691481
}
1482+
},
1483+
"Transcription": {
1484+
"Model": {
1485+
"Name": null
1486+
}
1487+
},
1488+
"Vision": {
1489+
"Model": {
1490+
"Name": null
1491+
}
1492+
},
1493+
"Plugins": {
14701494
}
14711495
}
14721496
}
@@ -1660,6 +1684,21 @@ For minimal configuration, you only need to provide **Endpoint**, **API Key**, a
16601684
"EnableWebSearchPlugin": true
16611685
}
16621686
},
1687+
"Transcription": {
1688+
"Model": {
1689+
"Name": null,
1690+
"UseHealthCheck": true
1691+
},
1692+
"IncludeWordGranularity": false,
1693+
"Timeout": "00:01:00"
1694+
},
1695+
"Vision": {
1696+
"Model": {
1697+
"Name": null,
1698+
"UseHealthCheck": true
1699+
},
1700+
"Timeout": "00:01:00"
1701+
},
16631702
"Plugins": {
16641703
"Memory": {
16651704
},

Vivet.AI/Vivet.AI.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
5-
<AssemblyVersion>0.10.0.0</AssemblyVersion>
6-
<FileVersion>0.10.0.0</FileVersion>
7-
<Version>0.10.0.0-preview-1</Version>
5+
<AssemblyVersion>0.10.1.0</AssemblyVersion>
6+
<FileVersion>0.10.1.0</FileVersion>
7+
<Version>0.10.1.0-preview</Version>
88
<PlatformTarget>AnyCPU</PlatformTarget>
99
<LangVersion>latest</LangVersion>
1010
<Authors>Michael Vivet</Authors>

0 commit comments

Comments
 (0)