Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 4 additions & 3 deletions docs/architecture/HOW_IT_WORKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ CREATE TABLE IF NOT EXISTS nodes (
confidence REAL NOT NULL,
context TEXT,
file_path TEXT,
line_number INTEGER
line_number INTEGER,
type_only INTEGER NOT NULL DEFAULT 0
);

CREATE TABLE IF NOT EXISTS files_state (
Expand Down Expand Up @@ -204,7 +205,7 @@ classDef externalNode fill:#fff3e0,stroke:#e65100,stroke-width:1px,stroke-dashar
uplift_SemanticUpliftEngine_execute_uplift["execute_uplift (uplift.py:91)"]:::methodNode
end
subgraph sg_sqlite_store["sqlite_store.py"]
sqlite_store_SQLiteStore["SQLiteStore (sqlite_store.py:48)"]:::classNode
sqlite_store_SQLiteStore["SQLiteStore (sqlite_store.py:53)"]:::classNode
end
pipeline_IngestionPipeline_run -->|REFERENCES| models_Node
pipeline_IngestionPipeline_run -->|REFERENCES| models_Edge
Expand Down Expand Up @@ -237,5 +238,5 @@ classDef externalNode fill:#fff3e0,stroke:#e65100,stroke-width:1px,stroke-dashar
| `resolve` | METHOD | [`engine.py:64`](https://github.com/zaebee/codegraph-brain/blob/main/src/cgis/resolver/engine.py#L64) |
| `SemanticUpliftEngine` | CLASS | [`uplift.py:66`](https://github.com/zaebee/codegraph-brain/blob/main/src/cgis/resolver/uplift.py#L66) |
| `execute_uplift` | METHOD | [`uplift.py:91`](https://github.com/zaebee/codegraph-brain/blob/main/src/cgis/resolver/uplift.py#L91) |
| `SQLiteStore` | CLASS | [`sqlite_store.py:48`](https://github.com/zaebee/codegraph-brain/blob/main/src/cgis/storage/sqlite_store.py#L48) |
| `SQLiteStore` | CLASS | [`sqlite_store.py:53`](https://github.com/zaebee/codegraph-brain/blob/main/src/cgis/storage/sqlite_store.py#L53) |
<!-- END_CGIS_GRAPH -->
2 changes: 1 addition & 1 deletion docs/architecture/diagrams/pipeline_flow.mermaid
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classDef externalNode fill:#fff3e0,stroke:#e65100,stroke-width:1px,stroke-dashar
uplift_SemanticUpliftEngine_execute_uplift["execute_uplift (uplift.py:91)"]:::methodNode
end
subgraph sg_sqlite_store["sqlite_store.py"]
sqlite_store_SQLiteStore["SQLiteStore (sqlite_store.py:48)"]:::classNode
sqlite_store_SQLiteStore["SQLiteStore (sqlite_store.py:53)"]:::classNode
end
pipeline_IngestionPipeline_run -->|REFERENCES| models_Node
pipeline_IngestionPipeline_run -->|REFERENCES| models_Edge
Expand Down