Skip to content

Commit 261853e

Browse files
committed
Fix typos and update dependencies and configurations
Updated the version of `TinyHelpers.AspNetCore` in `SqlDatabaseVectorSearch.csproj` from `4.1.2` to `4.1.3`. Clarified comments in `appsettings.json` for the `ModelId` field under `ChatCompletion` to specify requirements for `gpt-4.1` models.
1 parent 0ba84a3 commit 261853e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
- Use `nameof` instead of string literals when referring to member names.
2525
- Prefer `?.` if applicable (e.g. `scope?.Dispose()`).
2626
- Use `ObjectDisposedException.ThrowIf` where applicable.
27-
- Use `ArgumentNullException.ThrowIfNull` to validate input paramters.
27+
- Use `ArgumentNullException.ThrowIfNull` to validate input parameters.
2828
- If you add new code files, ensure they are listed in the csproj file (if other files in that folder are listed there) so they build.
2929

3030
### Nullable Reference Types

SqlDatabaseVectorSearch/SqlDatabaseVectorSearch.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<PackageReference Include="MinimalHelpers.Routing.Analyzers" Version="1.2.2" />
3131
<PackageReference Include="PdfPig" Version="0.1.11" />
3232
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="9.0.3" />
33-
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.1.2" />
33+
<PackageReference Include="TinyHelpers.AspNetCore" Version="4.1.3" />
3434
</ItemGroup>
3535

3636
</Project>

SqlDatabaseVectorSearch/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"ChatCompletion": {
77
"Endpoint": "",
88
"Deployment": "",
9-
"ModelId": "", // gpt-4.1, gpt-4.1-mini, gpt-4.1-nano, gpt-4o, gpt-4o-mini, gpt-4, gpt-3.5
9+
"ModelId": "", // gpt-4o, gpt-4, gpt-3.5, etc. Note that for gpt-4.1 models, the ModelId must be set to gpt-4o.
1010
"ApiKey": ""
1111
},
1212
"Embedding": {

0 commit comments

Comments
 (0)