-
Notifications
You must be signed in to change notification settings - Fork 0
Implemented chroma db #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
3c2b1b7
Implemented chroma db
f-s-h 8b0769e
Persisting vector stores
f-s-h 92aed5e
fix: bust rag index on embedding model change, rename vector-store vo…
raphael-frank 33a98f0
chore: raise py-genai-helper memory limits for the chroma rag stack
raphael-frank 1a8dfd0
Merge branch 'main' into feature/117-vectorized-database
raphael-frank 3beb48b
fix: cap py-genai-helper memory limit to fit namespace quota
raphael-frank 5917625
chore: trim grafana and loki memory limits to free namespace quota
raphael-frank File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,19 @@ | ||
| {{- range $name, $svc := .Values.services }} | ||
| {{- if $svc.persistence }} | ||
| apiVersion: v1 | ||
| kind: PersistentVolumeClaim | ||
| metadata: | ||
| name: {{ $name }}-data | ||
| labels: | ||
| {{- include "team-devoops.labels" (dict "name" $name "root" $) | nindent 4 }} | ||
| spec: | ||
| accessModes: ["ReadWriteOnce"] | ||
| {{- if $.Values.global.storageClassName }} | ||
| storageClassName: {{ $.Values.global.storageClassName }} | ||
| {{- end }} | ||
| resources: | ||
| requests: | ||
| storage: {{ $svc.persistence.size }} | ||
| --- | ||
| {{- end }} | ||
| {{- end }} |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ __pycache__/ | |
| .env | ||
| .venv/ | ||
| venv/ | ||
| vector-store/ | ||
| *.egg-info/ | ||
| .git/ | ||
| .gitignore | ||
|
|
||
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -12,3 +12,4 @@ __pycache__/ | |
| instance/ | ||
| *.log | ||
| include/ | ||
| vector-store/ | ||
This file contains hidden or 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 hidden or 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
Binary file not shown.
Binary file added
BIN
+13.6 MB
services/py-genai-helper/file-storage/Trainingsuebungen_fuer_ein_starkes_Handballteam.pdf
Binary file not shown.
Binary file added
BIN
+34.4 KB
services/py-genai-helper/file-storage/ernaehrung_fuer_sporttreibende.pdf
Binary file not shown.
Binary file not shown.
This file contains hidden or 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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win
🧩 Analysis chain
🏁 Script executed:
Repository: AET-DevOps26/team-devoops
Length of output: 2281
🏁 Script executed:
Repository: AET-DevOps26/team-devoops
Length of output: 50381
🏁 Script executed:
Repository: AET-DevOps26/team-devoops
Length of output: 18388
🏁 Script executed:
Repository: AET-DevOps26/team-devoops
Length of output: 1606
Mount
/code/vector-storeon a persistent volume. The image creates the directory, butrag.pystores the persisted Chroma data under/code/vector-store, and neitherinfra/docker-compose.ymlnor the Helm deployment mounts anything there. Every container recreation will drop the index and force a rebuild.🤖 Prompt for AI Agents