genesis-ai-cli 7.15.6 → 7.15.7
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/dist/src/cli/dispatcher.js +17 -0
- package/package.json +1 -1
|
@@ -55,6 +55,23 @@ const TOOL_ALIASES = {
|
|
|
55
55
|
'papers': 'search_arxiv',
|
|
56
56
|
'academic_search': 'search_arxiv',
|
|
57
57
|
'scholar': 'search_semantic_scholar',
|
|
58
|
+
// v7.15.7: Exa aliases
|
|
59
|
+
'exa': 'web_search_exa',
|
|
60
|
+
'exa_search': 'web_search_exa',
|
|
61
|
+
'exa.search': 'web_search_exa',
|
|
62
|
+
'exa.web_search': 'web_search_exa',
|
|
63
|
+
'exa.webSearch': 'web_search_exa',
|
|
64
|
+
'exa_web_search': 'web_search_exa',
|
|
65
|
+
'exa.code': 'get_code_context_exa',
|
|
66
|
+
'exa.get_code_context': 'get_code_context_exa',
|
|
67
|
+
'exa_code': 'get_code_context_exa',
|
|
68
|
+
// v7.15.7: Gemini aliases
|
|
69
|
+
'gemini': 'web_search',
|
|
70
|
+
'gemini_search': 'web_search',
|
|
71
|
+
'gemini.search': 'web_search',
|
|
72
|
+
'gemini.web_search': 'web_search',
|
|
73
|
+
'gemini.webSearch': 'web_search',
|
|
74
|
+
'gemini_web_search': 'web_search',
|
|
58
75
|
// Memory/knowledge graph aliases
|
|
59
76
|
'memory': 'read_graph',
|
|
60
77
|
'kg': 'read_graph',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "genesis-ai-cli",
|
|
3
|
-
"version": "7.15.
|
|
3
|
+
"version": "7.15.7",
|
|
4
4
|
"description": "Autonomous AI System Creator - Brain ON by default, Active Inference integrated, Curiosity-driven, Φ monitoring in every response",
|
|
5
5
|
"main": "dist/src/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|