-
Notifications
You must be signed in to change notification settings - Fork 438
/
package.json
94 lines (94 loc) · 2.75 KB
/
package.json
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "chat-ollama",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prisma-deploy": "prisma migrate deploy",
"prisma-migrate": "prisma migrate dev",
"prisma-generate": "prisma generate",
"prisma-push": "prisma db push"
},
"devDependencies": {
"@nuxtjs/google-fonts": "^3.2.0",
"@sidebase/nuxt-auth": "^0.7.1",
"@types/bcrypt": "^5.0.2",
"@types/html-to-text": "^9.0.4",
"@types/jsdom": "^21.1.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.14.9",
"@types/ws": "^8.5.10",
"h3": "^1.11.1",
"nuxt": "^3.11.2",
"sass": "^1.77.4",
"tailwindcss": "^3.4.4",
"type-fest": "^4.18.3",
"typescript": "^5.5.2",
"vue": "^3.4.31",
"vue-router": "^4.4.0"
},
"dependencies": {
"@google/generative-ai": "^0.21.0",
"@iconify-json/heroicons": "^1.1.21",
"@iconify-json/iconoir": "^1.1.44",
"@iconify-json/material-symbols": "^1.1.82",
"@iconify-json/mdi": "^1.1.67",
"@iconify-json/svg-spinners": "^1.1.2",
"@langchain/anthropic": "^0.3.8",
"@langchain/azure-openai": "^0.0.4",
"@langchain/cohere": "^0.0.6",
"@langchain/community": "^0.3.19",
"@langchain/core": "^0.3.23",
"@langchain/google-genai": "^0.1.5",
"@langchain/groq": "^0.0.5",
"@langchain/ollama": "^0.1.3",
"@langchain/openai": "^0.0.15",
"@modelcontextprotocol/sdk": "^1.0.3",
"@nuxt/ui": "^2.17.0",
"@nuxtjs/i18n": "^8.3.1",
"@prisma/client": "^5.12.1",
"@vercel/analytics": "^1.2.2",
"@vueuse/core": "^10.11.0",
"@vueuse/nuxt": "^10.11.0",
"@zilliz/milvus2-sdk-node": "^2.3.5",
"ai": "^2.2.37",
"bcrypt": "^5.1.1",
"cheerio": "1.0.0-rc.12",
"chromadb": "^1.8.1",
"d3-dsv": "^2.0.0",
"dexie": "^4.0.7",
"highlight.js": "^11.9.0",
"html-to-text": "^9.0.5",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.5",
"ioredis": "^5.3.2",
"jsdom": "^24.0.0",
"jsonwebtoken": "^9.0.2",
"langchain": "^0.1.31",
"langsmith": "^0.1.14",
"mammoth": "^1.7.1",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^4.0.0",
"markdown-it-sub": "^2.0.0",
"markdown-it-sup": "^2.0.0",
"markdown-it-task-lists": "^2.1.1",
"markdown-it-toc-done-right": "^4.2.0",
"next-auth": "4.21.1",
"ollama": "^0.5.2",
"openai": "^4.33.0",
"pdf-parse": "^1.1.1",
"prisma": "^5.12.1",
"socks-proxy-agent": "^8.0.4",
"ws": "^8.16.0",
"yup": "^1.4.0",
"zod": "^3.23.8",
"zod-to-json-schema": "^3.24.1"
}
}