Structure context for a file (from local tree-sitter analysis).
| 83 | code: Optional[str] = None # Optional function source |
| 84 | |
| 85 | class FileStructureContext(BaseModel): |
| 86 | """Structure context for a file (from local tree-sitter analysis).""" |
| 87 | filePath: str |
| 88 | functions: List[FunctionContext] |
| 89 | imports: List[str] |
| 90 | |
| 91 | class MetadataRequest(BaseModel): |
| 92 | """Request for metadata-only analysis.""" |
nothing calls this directly
no outgoing calls
no test coverage detected