-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vector Search and Semantic Caching (#417)
- Loading branch information
1 parent
c87f2da
commit cf41ed7
Showing
107 changed files
with
5,008 additions
and
464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.onnx filter=lfs diff=lfs merge=lfs -text | ||
src/Redis.OM.Vectorizers.AllMiniLML6V2/Resources/vocab.txt filter=lfs diff=lfs merge=lfs -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -388,3 +388,5 @@ FodyWeavers.xsd | |
# JetBrains Rider | ||
.idea/ | ||
*.sln.iml | ||
|
||
test/Redis.OM.Unit.Tests/appsettings.json.local |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
FROM mcr.microsoft.com/dotnet/sdk:6.0 | ||
|
||
FROM mcr.microsoft.com/dotnet/sdk:7.0 | ||
|
||
WORKDIR /app | ||
ADD . /app | ||
|
||
RUN ls /app | ||
RUN dotnet restore /app/Redis.OM.sln | ||
|
||
ENTRYPOINT ["dotnet","test"] | ||
ENTRYPOINT ["dotnet", "test", "--framework", "net7.0" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.