@olane/o-intelligence 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/dist/src/anthropic-intelligence.tool.d.ts +224 -0
- package/dist/src/anthropic-intelligence.tool.d.ts.map +1 -0
- package/dist/src/anthropic-intelligence.tool.js +477 -0
- package/dist/src/enums/intelligence-storage-keys.enum.d.ts +5 -0
- package/dist/src/enums/intelligence-storage-keys.enum.d.ts.map +1 -0
- package/dist/src/enums/intelligence-storage-keys.enum.js +5 -0
- package/dist/src/enums/llm-providers.enum.d.ts +8 -0
- package/dist/src/enums/llm-providers.enum.d.ts.map +1 -0
- package/dist/src/enums/llm-providers.enum.js +8 -0
- package/dist/src/gemini-intelligence.tool.d.ts +29 -0
- package/dist/src/gemini-intelligence.tool.d.ts.map +1 -0
- package/dist/src/gemini-intelligence.tool.js +267 -0
- package/dist/src/grok-intelligence.tool.d.ts +13 -0
- package/dist/src/grok-intelligence.tool.d.ts.map +1 -0
- package/dist/src/grok-intelligence.tool.js +214 -0
- package/dist/src/index.d.ts +7 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/index.js +6 -0
- package/dist/src/intelligence.tool.d.ts +21 -0
- package/dist/src/intelligence.tool.d.ts.map +1 -0
- package/dist/src/intelligence.tool.js +201 -0
- package/dist/src/methods/intelligence.methods.d.ts +5 -0
- package/dist/src/methods/intelligence.methods.d.ts.map +1 -0
- package/dist/src/methods/intelligence.methods.js +132 -0
- package/dist/src/ollama-intelligence.tool.d.ts +36 -0
- package/dist/src/ollama-intelligence.tool.d.ts.map +1 -0
- package/dist/src/ollama-intelligence.tool.js +312 -0
- package/dist/src/openai-intelligence.tool.d.ts +29 -0
- package/dist/src/openai-intelligence.tool.d.ts.map +1 -0
- package/dist/src/openai-intelligence.tool.js +261 -0
- package/dist/src/perplexity-intelligence.tool.d.ts +28 -0
- package/dist/src/perplexity-intelligence.tool.d.ts.map +1 -0
- package/dist/src/perplexity-intelligence.tool.js +310 -0
- package/dist/test/basic.spec.d.ts +1 -0
- package/dist/test/basic.spec.d.ts.map +1 -0
- package/dist/test/basic.spec.js +1 -0
- package/package.json +70 -0
package/package.json
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@olane/o-intelligence",
|
|
3
|
+
"version": "0.6.1",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "dist/src/index.js",
|
|
6
|
+
"types": "dist/src/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/src/index.d.ts",
|
|
10
|
+
"default": "./dist/src/index.js"
|
|
11
|
+
}
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/**/*",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"test": "aegir test",
|
|
20
|
+
"test:node": "aegir test -t node",
|
|
21
|
+
"test:browser": "aegir test -t browser",
|
|
22
|
+
"dev": "DEBUG=o-protocol:* npx tsx src/tests/index.ts",
|
|
23
|
+
"build": "tsc",
|
|
24
|
+
"deep:clean": "rm -rf node_modules && rm package-lock.json",
|
|
25
|
+
"start:prod": "node dist/index.js",
|
|
26
|
+
"prepublishOnly": "npm run build",
|
|
27
|
+
"update:lib": "npm install @olane/o-core@latest",
|
|
28
|
+
"lint": "eslint src/**/*.ts"
|
|
29
|
+
},
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/olane-labs/olane.git"
|
|
33
|
+
},
|
|
34
|
+
"author": "oLane Inc.",
|
|
35
|
+
"license": "ISC",
|
|
36
|
+
"description": "oLane intelligence tool",
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
39
|
+
"@eslint/js": "^9.29.0",
|
|
40
|
+
"@olane/o-config": "0.6.1",
|
|
41
|
+
"@olane/o-core": "0.6.1",
|
|
42
|
+
"@olane/o-protocol": "0.6.1",
|
|
43
|
+
"@olane/o-tool": "0.6.1",
|
|
44
|
+
"@tsconfig/node20": "^20.1.6",
|
|
45
|
+
"@types/jest": "^30.0.0",
|
|
46
|
+
"@typescript-eslint/eslint-plugin": "^8.34.1",
|
|
47
|
+
"@typescript-eslint/parser": "^8.34.1",
|
|
48
|
+
"eslint": "^9.29.0",
|
|
49
|
+
"eslint-config-prettier": "^10.1.6",
|
|
50
|
+
"eslint-plugin-prettier": "^5.5.0",
|
|
51
|
+
"globals": "^16.2.0",
|
|
52
|
+
"jest": "^30.0.0",
|
|
53
|
+
"prettier": "^3.5.3",
|
|
54
|
+
"ts-jest": "^29.4.0",
|
|
55
|
+
"ts-node": "^10.9.2",
|
|
56
|
+
"tsconfig-paths": "^4.2.0",
|
|
57
|
+
"tsx": "^4.20.3",
|
|
58
|
+
"typescript": "5.4.5"
|
|
59
|
+
},
|
|
60
|
+
"peerDependencies": {
|
|
61
|
+
"@olane/o-config": "^0.6.1",
|
|
62
|
+
"@olane/o-core": "^0.6.1",
|
|
63
|
+
"@olane/o-protocol": "^0.6.1",
|
|
64
|
+
"@olane/o-tool": "^0.6.1"
|
|
65
|
+
},
|
|
66
|
+
"dependencies": {
|
|
67
|
+
"debug": "^4.4.1",
|
|
68
|
+
"dotenv": "^16.5.0"
|
|
69
|
+
}
|
|
70
|
+
}
|