feat: solution for 'Повторный экзамен #2: Сравнительный обзор 3 сущностей (Tavily)'

This commit is contained in:
2026-07-01 14:30:48 +03:00
parent c11f8de6a7
commit d8ce6c3861
5 changed files with 274 additions and 132 deletions
+8 -30
View File
@@ -1,43 +1,21 @@
{
"name": "tavily-compare",
"name": "vector-search-comparison",
"version": "1.0.0",
"description": "A simple library to compare three entities using the Tavily API.",
"main": "src/index.js",
"type": "module",
"description": "A small library demonstrating integration with Qdrant and a markdown comparison of Tavily, Qdrant, and Pinecone.",
"main": "src/qdrantIntegration.js",
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --ext .js",
"format": "prettier --write ."
"test": "echo \"No tests defined\""
},
"keywords": [
"qdrant",
"tavily",
"compare",
"api",
"node"
"pinecone",
"vector-search",
"comparison"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"node-fetch": "^3.3.2"
},
"devDependencies": {
"jest": "^29.7.0",
"eslint": "^8.56.0",
"prettier": "^3.0.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0"
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"js",
"json"
],
"testMatch": [
"**/tests/**/*.test.js"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
]
}
}