Skip to content
Merged
Changes from 1 commit
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] May 5, 2025
34cf819
Update RAG Project to use custom registry with unique feature views
devin-ai-integration[bot] May 5, 2025
5d41b1c
Update RAG Project to use binary registry file
devin-ai-integration[bot] May 5, 2025
1eeeacb
Update RAG Project to use JSON registry file
devin-ai-integration[bot] May 5, 2025
0f3c2a7
Update RAG registry JSON format to match expected structure
devin-ai-integration[bot] May 5, 2025
568b657
Update useLoadRegistry to handle JSON registry files
devin-ai-integration[bot] May 5, 2025
4f6a4be
Format code with yarn format
devin-ai-integration[bot] May 5, 2025
4f8e391
Fix useLoadRegistry.ts to maintain compatibility with tests
devin-ai-integration[bot] May 5, 2025
e94f13e
Update mock handlers to ensure tests pass
devin-ai-integration[bot] May 5, 2025
7ad6a61
Fix mock handlers to use correct registry path
devin-ai-integration[bot] May 5, 2025
af08700
Update mock handlers to support both registry paths
devin-ai-integration[bot] May 5, 2025
3d55db2
Update FeastUISansProviders.test.tsx to include creditHistoryRegistry…
devin-ai-integration[bot] May 5, 2025
6fe1b30
Fix tests to handle both binary and JSON registry files
devin-ai-integration[bot] May 5, 2025
861ce8e
Fix feature view rendering in test environment
devin-ai-integration[bot] May 5, 2025
72362a1
Format code with yarn format
devin-ai-integration[bot] May 5, 2025
98e571e
Update projects order, fix data sources, and remove Home hyperlink
devin-ai-integration[bot] May 5, 2025
086d413
Fix feature view detail page by adding batchSource to feature views
devin-ai-integration[bot] May 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update RAG registry JSON format to match expected structure
Co-Authored-By: Francisco Javier Arceo <arceofrancisco@gmail.com>
  • Loading branch information
commit 0f3c2a74dc34138c39b65d0155f0e8c92f7f003e
41 changes: 31 additions & 10 deletions ui/public/rag_registry.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,24 @@
{
"project": "rag_project",
"projects": [
{
"spec": {
"name": "rag_project",
"description": "Project for Retrieval Augmented Generation"
}
}
],
"featureViews": [
Comment thread
franciscojavierarceo marked this conversation as resolved.
{
"spec": {
"name": "rag_document_embeddings",
"features": [
{
"name": "document_embedding",
"valueType": "FLOAT_VECTOR"
"valueType": 11
},
{
"name": "document_id",
"valueType": "STRING"
"valueType": 2
}
],
"entities": ["document"],
Expand All @@ -24,11 +31,11 @@
"features": [
{
"name": "query_embedding",
"valueType": "FLOAT_VECTOR"
"valueType": 11
},
{
"name": "query_id",
"valueType": "STRING"
"valueType": 2
}
],
"entities": ["query"],
Expand All @@ -41,15 +48,15 @@
"features": [
{
"name": "document_title",
"valueType": "STRING"
"valueType": 2
},
{
"name": "document_source",
"valueType": "STRING"
"valueType": 2
},
{
"name": "document_date",
"valueType": "UNIX_TIMESTAMP"
"valueType": 6
}
],
"entities": ["document"],
Expand All @@ -62,14 +69,28 @@
"spec": {
"name": "document",
"description": "Document entity for RAG",
"valueType": "STRING"
"valueType": 2
}
},
{
"spec": {
"name": "query",
"description": "Query entity for RAG",
"valueType": "STRING"
"valueType": 2
}
}
],
"dataSources": [
{
"spec": {
"name": "rag_document_source",
"description": "Source for RAG documents"
}
},
{
"spec": {
"name": "rag_query_source",
"description": "Source for RAG queries"
}
}
]
Expand Down