forked from tuannvm/slack-mcp-client
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: saturn query pipeline for rag optimisation #23
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
yekkhan-liftoff
merged 30 commits into
main
from
PE-7705-saturn-query-pipeline-for-rag-optimisation
Nov 24, 2025
Merged
Changes from 26 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
0c052c6
feat: saturn query pipeline for rag optimisation
yekkhan-liftoff b6c686f
feat: remove hardcoded limit
yekkhan-liftoff afc52a2
feat: remove unused metadata
yekkhan-liftoff 55816b3
feat: todo comments
yekkhan-liftoff 2a96ae1
feat: todo comments
yekkhan-liftoff 405e825
feat: decouple query rewriting and rag search
yekkhan-liftoff b0f9f39
chore: remove unused comments
yekkhan-liftoff 4d8cb9e
fix: fix missing s3 config, make embedding model configurable
yekkhan-liftoff bd49836
feat: debug voyage api key
yekkhan-liftoff 4999090
feat: substitute rag embedding provider env var, remove debug log
yekkhan-liftoff f0fb4d0
feat: add IRSA support to service account template
yekkhan-liftoff 8d5aaa4
feat: add logs
yekkhan-liftoff 4756a4c
feat: add observability for query enhancement
yekkhan-liftoff 540f49e
fix: fix empty input and tool name for tool-execution span
yekkhan-liftoff a6cc1e8
feat: added embedding span and fixed incorrect token usage
yekkhan-liftoff de6090d
feat: vector search span
yekkhan-liftoff 17b2ac7
feat: make date filter field configurable
yekkhan-liftoff 810cb24
feat: let llm handles the date window
yekkhan-liftoff cb8f858
feat: inject query enhancement prompt
yekkhan-liftoff e679bef
feat: handle corrupted metadata
yekkhan-liftoff e49ae77
fix: fix race condition in S3Provider.Initialize()
yekkhan-liftoff 95a82d5
perf(rag): optimize result sorting from O(n²) to O(n log n)
yekkhan-liftoff 4fe2c08
fix: sort dates in descending order, better for LLM
yekkhan-liftoff a356c12
fix: fix test
yekkhan-liftoff b2cf01a
fix: fix golangci lint err
yekkhan-liftoff 8edefb3
Merge branch 'refs/heads/main' into PE-7705-saturn-query-pipeline-for…
yekkhan-liftoff cc21015
fix: remove redundant metadata filtering
yekkhan-liftoff ee61226
refactor: dates filter are stored as int
yekkhan-liftoff fa192ab
refactor: dates filter are stored as int
yekkhan-liftoff 9177784
fix: fix lint
yekkhan-liftoff 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
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 |
|---|---|---|
| @@ -1,8 +1,12 @@ | ||
| {{- if and .Values.serviceAccount.create .Values.serviceAccount.clusterRoleName }} | ||
| {{- if .Values.serviceAccount.create }} | ||
| apiVersion: v1 | ||
| kind: ServiceAccount | ||
| metadata: | ||
| name: {{ include "slack-mcp-client.fullname" . }} | ||
| name: {{ .Values.serviceAccount.name | default (include "slack-mcp-client.fullname" .) }} | ||
| labels: | ||
| {{- include "slack-mcp-client.labels" . | nindent 4 }} | ||
| {{- with .Values.serviceAccount.annotations }} | ||
| annotations: | ||
| {{- toYaml . | nindent 4 }} | ||
| {{- 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
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
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.
Uh oh!
There was an error while loading. Please reload this page.