Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
159623a
Upgrade docker builds to .NET 9 and upgrade dependencies (#981)
dluc Jan 20, 2025
fa12c93
Multi-arch dockerization (#984)
dluc Jan 20, 2025
7caf4e4
Update docker-multiarch.yml
dluc Jan 20, 2025
31cfbcd
Update docker-amd64.yml
dluc Jan 20, 2025
44238ba
Update docker-amd64.yml
dluc Jan 20, 2025
98ffa2d
Update docker-amd64.yml
dluc Jan 20, 2025
616df42
Update docker-multiarch.yml
dluc Jan 20, 2025
068d347
Update docker-multiarch.yml
dluc Jan 20, 2025
32f5a59
Automate “latest” docker tag creation (#985)
dluc Jan 20, 2025
2681a9b
Update discord example (#988)
dluc Jan 28, 2025
a490102
New chunking classes (#996)
dluc Feb 6, 2025
e49783a
Normalize text new line to Unix-style (#998)
dluc Feb 7, 2025
9bcbb07
Fix for .NET9 runtime + upgrades (#997)
dluc Feb 7, 2025
4679df9
Upgrade dependencies (#1000)
dluc Feb 10, 2025
e931118
Replaced MongoDB.Driver.GridFS with MongoDB.Driver (#991)
walexee Feb 10, 2025
264c752
Install ICU in Docker image to support SQL Server memory (#1009)
alexmg Feb 21, 2025
cfcca80
Update cosine-similarity.md (#1015)
dluc Feb 25, 2025
5cd504a
Add OpenAPI specification for /upload endpoint. (#1032)
FabianSchurig Mar 22, 2025
0961ec7
feat(TextChunker): Add support for Chinese separators (#1019)
MadLongTom Mar 22, 2025
f407703
Update RabbitMQ Pipeline to asynchronous programming model (#1003)
marcominerva Mar 22, 2025
daf72cd
Upgrade packages (#1035)
dluc Mar 23, 2025
b18de36
Fix metadata reference in Chunk class (#1036)
dluc Mar 23, 2025
4fa2cc5
Upgrade RabbitMQ and ONNX dependencies (#1038)
dluc Mar 24, 2025
1c424ed
Add ForcePathStyle support to AWSS3Config for MinIO compatibility (#1…
eersinyildizz Mar 24, 2025
508ac0b
chore: update Core.csproj (#1049)
eltociear Apr 11, 2025
3dca13d
adding a split character for Japanese (#1041)
Kazunari001 Apr 25, 2025
164c159
Fix upload OpenAPI specs of “tags” and “steps” fields (#1064)
dluc May 8, 2025
10b4c60
Fix PostgresDbClient GetSimilarAsync minSimilarity requirement (#1057)
mrocha51248 May 8, 2025
bd8d34e
Upgrade dependencies (#1065)
dluc May 9, 2025
ab80482
Init ^2 (#1089)
dluc Nov 25, 2025
e25e8ef
Add configuration parser and classes
dluc Nov 26, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
26 changes: 26 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

jobs:
build:
name: Build Solution
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'

- name: Run build
run: |
chmod +x ./build.sh
./build.sh
36 changes: 36 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test Coverage

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

jobs:
coverage:
name: Check Test Coverage
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'

- name: Run coverage check
run: |
chmod +x ./coverage.sh
./coverage.sh 80
env:
MIN_COVERAGE: 80

- name: Upload coverage report
if: always()
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: TestResults/*/coverage.cobertura.xml
if-no-files-found: warn
49 changes: 0 additions & 49 deletions .github/workflows/docker-amd64.yml

This file was deleted.

57 changes: 0 additions & 57 deletions .github/workflows/docker-armd64.yml

This file was deleted.

Loading
Loading