| 176 | } |
| 177 | |
| 178 | export interface Properties { |
| 179 | [key: string | number]: { |
| 180 | type?: string; |
| 181 | description?: string; |
| 182 | path: (string | number)[]; |
| 183 | data?: any; |
| 184 | }; |
| 185 | } |
| 186 | |
| 187 | export interface EmbeddingResponse { |
| 188 | data: { embedding: number[]; index: number; object: string }[]; |
nothing calls this directly
no outgoing calls
no test coverage detected