Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions packages/backend/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@
"@google-cloud/opentelemetry-cloud-trace-exporter": "^3.0.0",
"@google-cloud/opentelemetry-resource-util": "^3.0.0",
"@modelcontextprotocol/sdk": "^1.26.0",
"@nestjs-cls/transactional": "^2.6.1",
"@nestjs-cls/transactional-adapter-prisma": "^1.2.19",
"@nestjs-cls/transactional": "^2.7.0",
"@nestjs-cls/transactional-adapter-prisma": "^1.2.24",
"@nestjs/apollo": "^13.0.4",
"@nestjs/bullmq": "^11.0.2",
"@nestjs/common": "^11.0.12",
"@nestjs/core": "^11.0.12",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "^11.0.21",
"@nestjs/core": "^11.1.14",
"@nestjs/graphql": "^13.0.4",
"@nestjs/platform-express": "^11.0.12",
"@nestjs/platform-socket.io": "^11.1.9",
"@nestjs/schedule": "^6.0.0",
"@nestjs/throttler": "^6.4.0",
"@nestjs/websockets": "^11.0.12",
"@nestjs/platform-express": "^11.1.14",
"@nestjs/platform-socket.io": "^11.1.14",
"@nestjs/schedule": "^6.1.1",
"@nestjs/throttler": "^6.5.0",
"@nestjs/websockets": "^11.1.14",
"@node-rs/argon2": "^2.0.2",
"@node-rs/crc32": "^1.10.6",
"@opentelemetry/api": "^1.9.0",
Expand Down Expand Up @@ -81,7 +81,7 @@
"date-fns": "^4.0.0",
"dotenv": "^16.4.7",
"eventemitter2": "^6.4.9",
"exa-js": "^1.6.13",
"exa-js": "^2.4.0",
"express": "^5.0.1",
"fast-xml-parser": "^5.3.4",
"get-stream": "^9.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ export const createExaCrawlTool = (config: Config) => {
const exa = new Exa(key);
const result = await exa.getContents([url], {
livecrawl: 'always',
text: {
maxCharacters: 100000,
},
text: { maxCharacters: 100000 },
});
return result.results.map(data => ({
title: data.title,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ export const createExaSearchTool = (config: Config) => {
try {
const { key } = config.copilot.exa;
const exa = new Exa(key);
const result = await exa.searchAndContents(query, {
const result = await exa.search(query, {
contents: {
summary: true,
livecrawl: mode === 'MUST' ? 'always' : undefined,
},
numResults: 10,
summary: true,
livecrawl: mode === 'MUST' ? 'always' : undefined,
});
return result.results.map(data => ({
title: data.title,
Expand Down
6 changes: 3 additions & 3 deletions packages/frontend/apps/electron/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@
"@types/set-cookie-parser": "^2.4.10",
"@types/uuid": "^11.0.0",
"@vitejs/plugin-react-swc": "^4.0.0",
"app-builder-lib": "^26.1.0",
"builder-util-runtime": "^9.5.0",
"app-builder-lib": "^26.8.1",
"builder-util-runtime": "^9.5.1",
"cross-env": "^10.1.0",
"debug": "^4.4.0",
"electron": "^39.0.0",
Expand All @@ -79,7 +79,7 @@
},
"dependencies": {
"async-call-rpc": "^6.4.2",
"electron-updater": "^6.6.2",
"electron-updater": "^6.8.3",
"link-preview-js": "^3.1.0",
"next-themes": "^0.4.4",
"set-cookie-parser": "^2.7.1",
Expand Down
Loading
Loading