| 21 | } |
| 22 | |
| 23 | type CodeEmbeddingChunk struct { |
| 24 | ChunkID int `json:"chunk_id"` |
| 25 | FileHash string `json:"file_hash"` |
| 26 | Code string `json:"code"` |
| 27 | StartIndex int `json:"start_index"` |
| 28 | EndIndex int `json:"end_index"` |
| 29 | Embedding []float32 `json:"embedding"` |
| 30 | } |
| 31 | |
| 32 | type CodeEmbeddings struct { |
| 33 | Embeddings []CodeEmbeddingChunk `json:"embeddings"` |
nothing calls this directly
no outgoing calls
no test coverage detected