-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsample_queries.json
More file actions
34 lines (34 loc) · 1.04 KB
/
sample_queries.json
File metadata and controls
34 lines (34 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[
{
"query": "How does the chunker split code into chunks?",
"expected_files": ["src/context_engine/indexer/chunker.py"]
},
{
"query": "vector search implementation",
"expected_files": ["src/context_engine/storage/vector_store.py"]
},
{
"query": "confidence scoring formula",
"expected_files": ["src/context_engine/retrieval/confidence.py"]
},
{
"query": "MCP server tools",
"expected_files": ["src/context_engine/integration/mcp_server.py"]
},
{
"query": "how does indexing pipeline work",
"expected_files": ["src/context_engine/indexer/pipeline.py"]
},
{
"query": "FTS5 full text search",
"expected_files": ["src/context_engine/storage/fts_store.py"]
},
{
"query": "graph neighbors query",
"expected_files": ["src/context_engine/storage/graph_store.py"]
},
{
"query": "git commit history indexing",
"expected_files": ["src/context_engine/indexer/git_indexer.py"]
}
]