-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "explore-rag",
"version": "1.0.0",
"description": "1. build a config 2. Scrape the web for config data 3. Generate the details and then generate summary for these dataset for creating vectors 4. push the vectors 5. query the vectors",
"main": "index.js",
"scripts": {
"generate-sources": "tsx generateSources.ts",
"generate-dataset": "tsx generateDataset.ts",
"generate-summary": "tsx generateSummary.ts",
"query-vectors": "tsx queryVectors.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/akashkmt/explore-rag.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/akashkmt/explore-rag/issues"
},
"homepage": "https://github.com/akashkmt/explore-rag#readme",
"devDependencies": {
"dotenv": "^17.3.1",
"tsx": "^4.21.0"
},
"dependencies": {
"@google/genai": "^1.46.0",
"@upstash/vector": "^1.2.3",
"axios": "^1.13.6",
"p-limit": "^7.3.0",
"puppeteer": "^24.40.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2"
}
}