Skip to content

Commit b83b49f

Browse files
Merge pull request #17 from Build5Nines/dev
Dev
2 parents 34f0dec + da6041f commit b83b49f

3 files changed

Lines changed: 22 additions & 8 deletions

File tree

.github/workflows/build-release.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,17 @@ jobs:
3131
- name: Build
3232
run: dotnet build --configuration Release --no-restore
3333

34-
- name: Publish
35-
run: dotnet publish --configuration Release --output ./publish --no-build
34+
# - name: Publish
35+
# run: dotnet publish --configuration Release --output ./publish --no-build
36+
37+
# - name: Upload artifact
38+
# uses: actions/upload-artifact@v4
39+
# with:
40+
# name: release-build
41+
# path: ./publish
3642

3743
- name: Upload artifact
3844
uses: actions/upload-artifact@v4
3945
with:
40-
name: release-build
41-
path: ./publish
46+
name: nuget-package
47+
path: '**/*.nupkg'

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,6 @@ dotnet add package Build5Nines.SharpVector
5050

5151
You can view it on Nuget.org here: <https://www.nuget.org/packages/Build5Nines.SharpVector/>
5252

53-
## Supports .NET 6 and greater
54-
55-
For maximum compatibility, the `Build5Nines.SharpVector` library is built using no external dependencies other than what's available from .NET, and it's built to target .NET 6 and greater.
56-
5753
## Example Usage
5854

5955
### Loading and Searching Vector Database
@@ -143,6 +139,10 @@ Here's a screenshot of the test console app running:
143139

144140
## Change Log
145141

142+
## v1.0.1 (2025-02-06)
143+
144+
- Upgrade to .NET 8 or higher
145+
146146
### v1.0.0 (2024-05-24)
147147

148148
- Simplify object model by combining Async and non-Async classes, `BasicMemoryVectorDatabase` now support both synchronous and asynchronous operations.

src/Build5Nines.SharpVector/docs/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,11 @@ loader.AddDocument(document, new TextChunkingOptions<string>
4747
}
4848
});
4949
```
50+
51+
## Tutorials
52+
53+
Here's a couple helpful tutorial links with additional documentation and examples on using `Build5Nines.SharpVector` in your own projects:
54+
55+
- [Perform Vector Database Similarity Search in .NET Apps using Build5Nines.SharpVector](https://build5nines.com/using-build5nines-sharpvector-for-vector-similarity-search-in-net-applications/) by Chris Pietschmann
56+
- [Build a Generative AI + RAG App in C# with Phi-3, ONNX, and SharpVector](https://build5nines.com/build-a-generative-ai-rag-app-in-c-with-phi-3-onnx-and-sharpvector/) by Chris Pietschmann
57+
- [Implementing Local RAG using Phi-3 ONNX Runtime and Sidecar Pattern on Linux App Service](https://azure.github.io/AppService/2024/09/03/Phi3-vector.html) by Tulika Chaudharie (Principal Product Manager at Microsoft for Azure App Service)

0 commit comments

Comments
 (0)