()
| 48 | } |
| 49 | |
| 50 | export async function createCollection(){ |
| 51 | await client.createCollection("DailyCode",{ |
| 52 | vectors:{ size: VECTOR_SIZE , distance: "Dot" }, |
| 53 | }); |
| 54 | } |
| 55 | |
| 56 | export async function insertData(trackId: string) { |
| 57 | const data = await scrapeData({ trackId }); |
no outgoing calls
no test coverage detected