mirror of
https://github.com/geoffsee/open-gsio.git
synced 2025-09-08 22:56:46 +00:00

- Implemented intelligent retrieval-augmented generation system (`agentic_rag`) for dynamic decision-making on knowledge retrieval. - Uses Milvus with a large dataset - Added comprehensive test cases for query analysis, storage, retrieval, and error handling. - Integrated `AgenticRAGTools` into `chat-stream-provider` enabling tool-based responses. - Updated dependencies with `@zilliz/milvus2-sdk-node` for Milvus integration. - Updated lander hero title.
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@open-gsio/ai",
|
|
"type": "module",
|
|
"module": "src/index.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./src/index.ts",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./chat-sdk/chat-sdk.ts": {
|
|
"import": "./src/chat-sdk/chat-sdk.ts",
|
|
"types": "./src/chat-sdk/chat-sdk.ts"
|
|
},
|
|
"./providers/_ProviderRepository.ts": {
|
|
"import": "./src/providers/_ProviderRepository.ts",
|
|
"types": "./src/providers/_ProviderRepository.ts"
|
|
},
|
|
"./providers/google.ts": {
|
|
"import": "./src/providers/google.ts",
|
|
"types": "./src/providers/google.ts"
|
|
},
|
|
"./providers/openai.ts": {
|
|
"import": "./src/providers/openai.ts",
|
|
"types": "./src/providers/openai.ts"
|
|
},
|
|
"./src": {
|
|
"import": "./src/index.ts",
|
|
"types": "./src/index.ts"
|
|
},
|
|
"./utils": {
|
|
"import": "./src/utils/index.ts",
|
|
"types": "./src/utils/index.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"tests": "vitest run",
|
|
"tests:coverage": "vitest run --coverage.enabled=true"
|
|
},
|
|
"devDependencies": {
|
|
"@open-gsio/env": "workspace:*",
|
|
"@open-gsio/schema": "workspace:*",
|
|
"@anthropic-ai/sdk": "^0.55.0",
|
|
"@zilliz/milvus2-sdk-node": "^2.6.0",
|
|
"openai": "^5.0.1",
|
|
"wrangler": "^4.18.0",
|
|
"vitest": "^3.1.4",
|
|
"vite": "^6.3.5"
|
|
}
|
|
}
|