Skip to content

Commit

Permalink
Add Qdrant sample
Browse files Browse the repository at this point in the history
  • Loading branch information
rstropek committed Aug 8, 2024
1 parent d4bbbb8 commit 30f5e1b
Show file tree
Hide file tree
Showing 11 changed files with 1,866 additions and 0 deletions.
1 change: 1 addition & 0 deletions labs/042-qdrant-rag/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
embeddings.json
22 changes: 22 additions & 0 deletions labs/042-qdrant-rag/.vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "npm: build",
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"console": "integratedTerminal"
}
]
}
16 changes: 16 additions & 0 deletions labs/042-qdrant-rag/.vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: build",
"detail": "tsc"
}
]
}
Loading

0 comments on commit 30f5e1b

Please sign in to comment.