-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: Add rag project to default dev UI #5323
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
franciscojavierarceo
merged 17 commits into
feast-dev:master
from
franciscojavierarceo:devin/1746410329-add-rag-project-to-ui
May 5, 2025
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
32eaca4
Add RAG Project to projects-list.json
devin-ai-integration[bot] 34cf819
Update RAG Project to use custom registry with unique feature views
devin-ai-integration[bot] 5d41b1c
Update RAG Project to use binary registry file
devin-ai-integration[bot] 1eeeacb
Update RAG Project to use JSON registry file
devin-ai-integration[bot] 0f3c2a7
Update RAG registry JSON format to match expected structure
devin-ai-integration[bot] 568b657
Update useLoadRegistry to handle JSON registry files
devin-ai-integration[bot] 4f6a4be
Format code with yarn format
devin-ai-integration[bot] 4f8e391
Fix useLoadRegistry.ts to maintain compatibility with tests
devin-ai-integration[bot] e94f13e
Update mock handlers to ensure tests pass
devin-ai-integration[bot] 7ad6a61
Fix mock handlers to use correct registry path
devin-ai-integration[bot] af08700
Update mock handlers to support both registry paths
devin-ai-integration[bot] 3d55db2
Update FeastUISansProviders.test.tsx to include creditHistoryRegistry…
devin-ai-integration[bot] 6fe1b30
Fix tests to handle both binary and JSON registry files
devin-ai-integration[bot] 861ce8e
Fix feature view rendering in test environment
devin-ai-integration[bot] 72362a1
Format code with yarn format
devin-ai-integration[bot] 98e571e
Update projects order, fix data sources, and remove Home hyperlink
devin-ai-integration[bot] 086d413
Fix feature view detail page by adding batchSource to feature views
devin-ai-integration[bot] 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,121 @@ | ||
| { | ||
| "projects": [ | ||
| { | ||
| "spec": { | ||
| "name": "rag_project", | ||
| "description": "Project for Retrieval Augmented Generation" | ||
| } | ||
| } | ||
| ], | ||
| "featureViews": [ | ||
| { | ||
| "spec": { | ||
| "name": "rag_document_embeddings", | ||
| "features": [ | ||
| { | ||
| "name": "document_embedding", | ||
| "valueType": 11 | ||
| }, | ||
| { | ||
| "name": "document_id", | ||
| "valueType": 2 | ||
| } | ||
| ], | ||
| "entities": ["document"], | ||
| "description": "Document embeddings for RAG", | ||
| "batchSource": { | ||
| "name": "rag_document_source", | ||
| "type": 1, | ||
| "dataSourceClassType": "feast.infra.offline_stores.file_source.FileSource", | ||
| "description": "Source for RAG documents" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "spec": { | ||
| "name": "rag_query_embeddings", | ||
| "features": [ | ||
| { | ||
| "name": "query_embedding", | ||
| "valueType": 11 | ||
| }, | ||
| { | ||
| "name": "query_id", | ||
| "valueType": 2 | ||
| } | ||
| ], | ||
| "entities": ["query"], | ||
| "description": "Query embeddings for RAG", | ||
| "batchSource": { | ||
| "name": "rag_query_source", | ||
| "type": 1, | ||
| "dataSourceClassType": "feast.infra.offline_stores.file_source.FileSource", | ||
| "description": "Source for RAG queries" | ||
| } | ||
| } | ||
| }, | ||
| { | ||
| "spec": { | ||
| "name": "rag_document_metadata", | ||
| "features": [ | ||
| { | ||
| "name": "document_title", | ||
| "valueType": 2 | ||
| }, | ||
| { | ||
| "name": "document_source", | ||
| "valueType": 2 | ||
| }, | ||
| { | ||
| "name": "document_date", | ||
| "valueType": 6 | ||
| } | ||
| ], | ||
| "entities": ["document"], | ||
| "description": "Document metadata for RAG", | ||
| "batchSource": { | ||
| "name": "rag_document_source", | ||
| "type": 1, | ||
| "dataSourceClassType": "feast.infra.offline_stores.file_source.FileSource", | ||
| "description": "Source for RAG documents" | ||
| } | ||
| } | ||
| } | ||
| ], | ||
| "entities": [ | ||
| { | ||
| "spec": { | ||
| "name": "document", | ||
| "description": "Document entity for RAG", | ||
| "valueType": 2 | ||
| } | ||
| }, | ||
| { | ||
| "spec": { | ||
| "name": "query", | ||
| "description": "Query entity for RAG", | ||
| "valueType": 2 | ||
| } | ||
| } | ||
| ], | ||
| "dataSources": [ | ||
| { | ||
| "name": "rag_document_source", | ||
| "type": 1, | ||
| "dataSourceClassType": "feast.infra.offline_stores.file_source.FileSource", | ||
| "spec": { | ||
| "name": "rag_document_source", | ||
| "description": "Source for RAG documents" | ||
| } | ||
| }, | ||
| { | ||
| "name": "rag_query_source", | ||
| "type": 1, | ||
| "dataSourceClassType": "feast.infra.offline_stores.file_source.FileSource", | ||
| "spec": { | ||
| "name": "rag_query_source", | ||
| "description": "Source for RAG queries" | ||
| } | ||
| } | ||
| ] | ||
| } | ||
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
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
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.