| 89 | } |
| 90 | |
| 91 | type CodeEmbedding struct { |
| 92 | URL string `gorm:"primaryKey;type:varchar(255)"` |
| 93 | FileHash string `gorm:"primaryKey;type:varchar(255)"` |
| 94 | FilePath string `gorm:"primaryKey;type:varchar(255)"` |
| 95 | ChunkID int `gorm:"primaryKey"` |
| 96 | StartIndex int |
| 97 | EndIndex int |
| 98 | Embedding pgvector.Vector `gorm:"type:vector(768)"` |
| 99 | } |
nothing calls this directly
no outgoing calls
no test coverage detected