mirror of
https://github.com/rowboatlabs/rowboat.git
synced 2026-05-31 19:15:17 +02:00
refactor rag; add files support; use qdrant
This commit is contained in:
parent
b438e8f307
commit
7847c96977
43 changed files with 4556 additions and 2372 deletions
9
apps/rowboat/app/scripts/delete_qdrant.ts
Normal file
9
apps/rowboat/app/scripts/delete_qdrant.ts
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import '../lib/loadenv';
|
||||
import { qdrantClient } from '../lib/qdrant';
|
||||
|
||||
(async () => {
|
||||
await qdrantClient.deleteCollection('embeddings');
|
||||
|
||||
const { collections } = await qdrantClient.getCollections();
|
||||
console.log(collections);
|
||||
})();
|
||||
Loading…
Add table
Add a link
Reference in a new issue