elidia-agent-cli 0.1.0__tar.gz

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.
Files changed (115) hide show
  1. elidia_agent_cli-0.1.0/CHANGELOG.md +16 -0
  2. elidia_agent_cli-0.1.0/LICENSE +57 -0
  3. elidia_agent_cli-0.1.0/MANIFEST.in +12 -0
  4. elidia_agent_cli-0.1.0/PKG-INFO +344 -0
  5. elidia_agent_cli-0.1.0/README.md +297 -0
  6. elidia_agent_cli-0.1.0/docs/ARCHITECTURE_FLOWCHARTS.md +725 -0
  7. elidia_agent_cli-0.1.0/docs/api/commands.md +129 -0
  8. elidia_agent_cli-0.1.0/docs/architecture/modules.md +66 -0
  9. elidia_agent_cli-0.1.0/docs/architecture/overview.md +162 -0
  10. elidia_agent_cli-0.1.0/docs/getting-started/configuration.md +119 -0
  11. elidia_agent_cli-0.1.0/docs/getting-started/installation.md +71 -0
  12. elidia_agent_cli-0.1.0/docs/getting-started/quickstart.md +97 -0
  13. elidia_agent_cli-0.1.0/docs/guide/chat-modes.md +84 -0
  14. elidia_agent_cli-0.1.0/docs/guide/creative.md +62 -0
  15. elidia_agent_cli-0.1.0/docs/guide/models.md +68 -0
  16. elidia_agent_cli-0.1.0/docs/guide/research.md +53 -0
  17. elidia_agent_cli-0.1.0/docs/guide/themes.md +86 -0
  18. elidia_agent_cli-0.1.0/docs/guide/tools-mcp.md +86 -0
  19. elidia_agent_cli-0.1.0/docs/guide/workflows.md +160 -0
  20. elidia_agent_cli-0.1.0/docs/index.md +61 -0
  21. elidia_agent_cli-0.1.0/elidia/__init__.py +0 -0
  22. elidia_agent_cli-0.1.0/elidia/__main__.py +4 -0
  23. elidia_agent_cli-0.1.0/elidia/agent/__init__.py +3 -0
  24. elidia_agent_cli-0.1.0/elidia/agent/loop.py +449 -0
  25. elidia_agent_cli-0.1.0/elidia/agent/personas.py +130 -0
  26. elidia_agent_cli-0.1.0/elidia/agent/portal.py +115 -0
  27. elidia_agent_cli-0.1.0/elidia/api/__init__.py +0 -0
  28. elidia_agent_cli-0.1.0/elidia/api/client.py +221 -0
  29. elidia_agent_cli-0.1.0/elidia/api/streaming.py +55 -0
  30. elidia_agent_cli-0.1.0/elidia/auth/__init__.py +0 -0
  31. elidia_agent_cli-0.1.0/elidia/auth/keychain.py +86 -0
  32. elidia_agent_cli-0.1.0/elidia/cache/__init__.py +1 -0
  33. elidia_agent_cli-0.1.0/elidia/cache/lru.py +158 -0
  34. elidia_agent_cli-0.1.0/elidia/cli/__init__.py +0 -0
  35. elidia_agent_cli-0.1.0/elidia/cli/commands.py +122 -0
  36. elidia_agent_cli-0.1.0/elidia/cli/main.py +293 -0
  37. elidia_agent_cli-0.1.0/elidia/cli/pager.py +104 -0
  38. elidia_agent_cli-0.1.0/elidia/cli/progress.py +173 -0
  39. elidia_agent_cli-0.1.0/elidia/cli/renderer.py +32 -0
  40. elidia_agent_cli-0.1.0/elidia/cli/repl.py +1234 -0
  41. elidia_agent_cli-0.1.0/elidia/cli/themes.py +214 -0
  42. elidia_agent_cli-0.1.0/elidia/config/__init__.py +0 -0
  43. elidia_agent_cli-0.1.0/elidia/config/defaults.py +5 -0
  44. elidia_agent_cli-0.1.0/elidia/config/rules.py +48 -0
  45. elidia_agent_cli-0.1.0/elidia/config/settings.py +217 -0
  46. elidia_agent_cli-0.1.0/elidia/creative/__init__.py +1 -0
  47. elidia_agent_cli-0.1.0/elidia/creative/audio.py +213 -0
  48. elidia_agent_cli-0.1.0/elidia/creative/display.py +260 -0
  49. elidia_agent_cli-0.1.0/elidia/creative/image.py +142 -0
  50. elidia_agent_cli-0.1.0/elidia/creative/local.py +163 -0
  51. elidia_agent_cli-0.1.0/elidia/creative/video.py +181 -0
  52. elidia_agent_cli-0.1.0/elidia/daemon/__init__.py +0 -0
  53. elidia_agent_cli-0.1.0/elidia/daemon/manager.py +349 -0
  54. elidia_agent_cli-0.1.0/elidia/db/__init__.py +0 -0
  55. elidia_agent_cli-0.1.0/elidia/db/database.py +87 -0
  56. elidia_agent_cli-0.1.0/elidia/mcp/__init__.py +0 -0
  57. elidia_agent_cli-0.1.0/elidia/mcp/client.py +198 -0
  58. elidia_agent_cli-0.1.0/elidia/mcp/config.py +93 -0
  59. elidia_agent_cli-0.1.0/elidia/mcp/registry.py +101 -0
  60. elidia_agent_cli-0.1.0/elidia/mcp/types.py +43 -0
  61. elidia_agent_cli-0.1.0/elidia/memory/__init__.py +3 -0
  62. elidia_agent_cli-0.1.0/elidia/memory/auto.py +164 -0
  63. elidia_agent_cli-0.1.0/elidia/memory/compaction.py +101 -0
  64. elidia_agent_cli-0.1.0/elidia/memory/embeddings.py +47 -0
  65. elidia_agent_cli-0.1.0/elidia/memory/outcomes.py +131 -0
  66. elidia_agent_cli-0.1.0/elidia/memory/patterns.py +79 -0
  67. elidia_agent_cli-0.1.0/elidia/memory/store.py +338 -0
  68. elidia_agent_cli-0.1.0/elidia/models/__init__.py +0 -0
  69. elidia_agent_cli-0.1.0/elidia/models/adaptive.py +53 -0
  70. elidia_agent_cli-0.1.0/elidia/models/router.py +115 -0
  71. elidia_agent_cli-0.1.0/elidia/modes/__init__.py +1 -0
  72. elidia_agent_cli-0.1.0/elidia/modes/autonomous.py +318 -0
  73. elidia_agent_cli-0.1.0/elidia/modes/budget.py +182 -0
  74. elidia_agent_cli-0.1.0/elidia/modes/classifier.py +169 -0
  75. elidia_agent_cli-0.1.0/elidia/modes/consensus.py +210 -0
  76. elidia_agent_cli-0.1.0/elidia/modes/deep_think.py +190 -0
  77. elidia_agent_cli-0.1.0/elidia/modes/swarm.py +229 -0
  78. elidia_agent_cli-0.1.0/elidia/modes/thinking.py +153 -0
  79. elidia_agent_cli-0.1.0/elidia/permissions/__init__.py +0 -0
  80. elidia_agent_cli-0.1.0/elidia/permissions/audit.py +138 -0
  81. elidia_agent_cli-0.1.0/elidia/permissions/manager.py +199 -0
  82. elidia_agent_cli-0.1.0/elidia/permissions/trust.py +63 -0
  83. elidia_agent_cli-0.1.0/elidia/rag/__init__.py +4 -0
  84. elidia_agent_cli-0.1.0/elidia/rag/chunker.py +216 -0
  85. elidia_agent_cli-0.1.0/elidia/rag/engine.py +345 -0
  86. elidia_agent_cli-0.1.0/elidia/rag/ingest.py +154 -0
  87. elidia_agent_cli-0.1.0/elidia/rag/portal_bridge.py +84 -0
  88. elidia_agent_cli-0.1.0/elidia/rag/watcher.py +98 -0
  89. elidia_agent_cli-0.1.0/elidia/research/__init__.py +1 -0
  90. elidia_agent_cli-0.1.0/elidia/research/export.py +237 -0
  91. elidia_agent_cli-0.1.0/elidia/research/orchestrator.py +310 -0
  92. elidia_agent_cli-0.1.0/elidia/research/sources.py +223 -0
  93. elidia_agent_cli-0.1.0/elidia/session/__init__.py +0 -0
  94. elidia_agent_cli-0.1.0/elidia/session/history.py +119 -0
  95. elidia_agent_cli-0.1.0/elidia/session/manager.py +82 -0
  96. elidia_agent_cli-0.1.0/elidia/tools/__init__.py +28 -0
  97. elidia_agent_cli-0.1.0/elidia/tools/base.py +70 -0
  98. elidia_agent_cli-0.1.0/elidia/tools/fetch.py +100 -0
  99. elidia_agent_cli-0.1.0/elidia/tools/filesystem.py +204 -0
  100. elidia_agent_cli-0.1.0/elidia/tools/git.py +156 -0
  101. elidia_agent_cli-0.1.0/elidia/tools/search.py +99 -0
  102. elidia_agent_cli-0.1.0/elidia/tools/terminal.py +77 -0
  103. elidia_agent_cli-0.1.0/elidia/widgets/__init__.py +1 -0
  104. elidia_agent_cli-0.1.0/elidia/widgets/protocol.py +248 -0
  105. elidia_agent_cli-0.1.0/elidia/widgets/renderer.py +225 -0
  106. elidia_agent_cli-0.1.0/elidia/workflow/__init__.py +1 -0
  107. elidia_agent_cli-0.1.0/elidia/workflow/engine.py +377 -0
  108. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/PKG-INFO +344 -0
  109. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/SOURCES.txt +113 -0
  110. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/dependency_links.txt +1 -0
  111. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/entry_points.txt +2 -0
  112. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/requires.txt +23 -0
  113. elidia_agent_cli-0.1.0/elidia_agent_cli.egg-info/top_level.txt +1 -0
  114. elidia_agent_cli-0.1.0/pyproject.toml +90 -0
  115. elidia_agent_cli-0.1.0/setup.cfg +4 -0
@@ -0,0 +1,16 @@
1
+ # Changelog
2
+
3
+ All notable changes to Elidia CLI will be documented in this file.
4
+
5
+ ## [0.1.0] - 2026-07-25
6
+
7
+ ### Added
8
+ - Phase 0: Core CLI framework (Click + Rich + prompt_toolkit)
9
+ - Phase 1: MCP integration, built-in tools, model router, permissions
10
+ - Phase 2: Persistent memory (sqlite-vec), RAG engine, session management
11
+ - Phase 3: Advanced modes (classifier, consensus, deep think, autonomous, swarm)
12
+ - Phase 3: Research pipeline (YOYO 5-stage), creative generation, workflow engine
13
+ - Phase 3: Daemon mode, widget protocol, terminal image display
14
+ - Phase 4: Auto-pager, progress indicators, response cache, configurable themes
15
+ - Phase 4: Connection pooling (httpx HTTP/2), PyPI packaging, CI/CD pipeline
16
+ - Phase 4: Automated test suite, MkDocs documentation site
@@ -0,0 +1,57 @@
1
+ Elidia Technology Pvt Ltd — PROPRIETARY SOFTWARE LICENSE NOTICE
2
+
3
+ Copyright © 2026 Elidia Technology Pvt Ltd. All Rights Reserved.
4
+
5
+ Author: Saleem Ahmad
6
+
7
+ This software, including but not limited to all source code, object code,
8
+ documentation, architecture, algorithms, artificial intelligence models,
9
+ machine learning pipelines, embeddings, datasets, APIs, workflows,
10
+ knowledge graphs, prompts, and related materials (collectively referred to
11
+ as the "Software"), is proprietary and confidential intellectual property
12
+ of Elidia Technology Pvt Ltd.
13
+
14
+ The Software contains trade secrets and confidential information protected
15
+ under applicable intellectual property laws, including but not limited to
16
+ copyright law, trade secret law, patent law, and international intellectual
17
+ property treaties.
18
+
19
+ Unauthorized use, reproduction, copying, modification, merging,
20
+ distribution, sublicensing, sale, leasing, transfer, publication, or
21
+ disclosure of the Software, in whole or in part, is strictly prohibited
22
+ without prior written authorization from Elidia Technology Pvt Ltd.
23
+
24
+ Except where explicitly permitted under applicable law, any attempt to
25
+ reverse engineer, decompile, disassemble, derive source code, extract
26
+ underlying algorithms, replicate system architecture, reproduce training
27
+ processes, or otherwise attempt to discover the internal design or logic of
28
+ the Software is strictly prohibited.
29
+
30
+ Access to the Software does not grant any ownership rights. All rights,
31
+ title, and interest in and to the Software, including all intellectual
32
+ property rights, remain exclusively with Elidia Technology Pvt Ltd.
33
+
34
+ The Software is provided strictly under a separate written license
35
+ agreement. Possession, installation, or access to the Software does not
36
+ grant permission to use it unless a valid license agreement has been
37
+ executed with Elidia Technology Pvt Ltd.
38
+
39
+ THE SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
40
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
41
+ FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL
42
+ ELIDIA TECHNOLOGY PVT LTD BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
43
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING
44
+ FROM OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
45
+ THE SOFTWARE.
46
+
47
+ This notice and any associated license agreement shall be governed by and
48
+ interpreted in accordance with the laws of India.
49
+
50
+ This protection extends to all artificial intelligence components,
51
+ including training data pipelines, prompt engineering frameworks,
52
+ model orchestration logic, and retrieval architectures implemented
53
+ within the Software.
54
+
55
+ For licensing inquiries contact:
56
+ Elidia Technology Pvt Ltd
57
+ Email: support@aiutils.io
@@ -0,0 +1,12 @@
1
+ include LICENSE
2
+ include README.md
3
+ include CHANGELOG.md
4
+ include pyproject.toml
5
+
6
+ recursive-include elidia *.py *.typed
7
+ recursive-include docs *.md
8
+
9
+ prune tests
10
+ prune .github
11
+ prune dist
12
+ prune build
@@ -0,0 +1,344 @@
1
+ Metadata-Version: 2.4
2
+ Name: elidia-agent-cli
3
+ Version: 0.1.0
4
+ Summary: Elidia Agent CLI — Universal AI Agent for your terminal
5
+ Author-email: Elidia Technology Pvt Ltd <support@aiutils.io>
6
+ License-Expression: LicenseRef-Proprietary
7
+ Project-URL: Homepage, https://elidia.dev
8
+ Project-URL: Repository, https://github.com/aiutils/elidia-agent-cli
9
+ Project-URL: Documentation, https://docs.elidia.dev
10
+ Project-URL: Issues, https://github.com/aiutils/elidia-agent-cli/issues
11
+ Project-URL: Changelog, https://github.com/aiutils/elidia-agent-cli/blob/main/CHANGELOG.md
12
+ Keywords: ai,agent,cli,llm,mcp,coding-assistant,terminal
13
+ Classifier: Development Status :: 3 - Alpha
14
+ Classifier: Environment :: Console
15
+ Classifier: Intended Audience :: Developers
16
+ Classifier: Operating System :: OS Independent
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Software Development :: Code Generators
22
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
23
+ Requires-Python: >=3.11
24
+ Description-Content-Type: text/markdown
25
+ License-File: LICENSE
26
+ Requires-Dist: click>=8.1
27
+ Requires-Dist: rich>=13.0
28
+ Requires-Dist: prompt-toolkit>=3.0
29
+ Requires-Dist: httpx[http2]>=0.27
30
+ Requires-Dist: keyring>=25.0
31
+ Requires-Dist: sqlite-vec>=0.1.9
32
+ Requires-Dist: pyyaml>=6.0
33
+ Provides-Extra: dev
34
+ Requires-Dist: pytest>=8.0; extra == "dev"
35
+ Requires-Dist: pytest-asyncio>=0.24; extra == "dev"
36
+ Requires-Dist: pytest-cov>=5.0; extra == "dev"
37
+ Requires-Dist: ruff>=0.5; extra == "dev"
38
+ Provides-Extra: local
39
+ Requires-Dist: torch>=2.0; extra == "local"
40
+ Requires-Dist: diffusers>=0.27; extra == "local"
41
+ Requires-Dist: Pillow>=10.0; extra == "local"
42
+ Provides-Extra: docs
43
+ Requires-Dist: mkdocs>=1.6; extra == "docs"
44
+ Requires-Dist: mkdocs-material>=9.5; extra == "docs"
45
+ Requires-Dist: mkdocstrings[python]>=0.25; extra == "docs"
46
+ Dynamic: license-file
47
+
48
+ <p align="center">
49
+ <h1 align="center">Elidia Agent CLI</h1>
50
+ <p align="center"><strong>Universal AI Agent for your terminal</strong></p>
51
+ <p align="center">
52
+ Write code, search the web, manage files, run research, generate creative content — all from the command line.
53
+ </p>
54
+ <p align="center">
55
+ <a href="https://pypi.org/project/elidia-agent-cli/"><img src="https://img.shields.io/pypi/v/elidia-agent-cli?color=blue" alt="PyPI"></a>
56
+ <a href="https://pypi.org/project/elidia-agent-cli/"><img src="https://img.shields.io/pypi/pyversions/elidia-agent-cli" alt="Python"></a>
57
+ <a href="LICENSE"><img src="https://img.shields.io/badge/license-Proprietary-red" alt="License"></a>
58
+ </p>
59
+ </p>
60
+
61
+ ---
62
+
63
+ ## What is Elidia Agent CLI?
64
+
65
+ Elidia Agent CLI is a powerful terminal-based AI agent that connects you to **30+ language models** through a single interface. It goes beyond simple chat — it can execute tools, run multi-model consensus, conduct deep research, generate images/video/audio, and orchestrate complex workflows — all from your terminal.
66
+
67
+ Powered by the [AiUtils Developer API](https://developer.aiutils.io), Elidia Agent CLI gives you access to models from OpenAI, Anthropic, Google, DeepSeek, Meta, Alibaba, and more — with a single API key.
68
+
69
+ ## Key Features
70
+
71
+ ### Multi-Model Intelligence
72
+ - **30+ models** — Claude, GPT, Gemini, DeepSeek, Llama, Qwen, Mistral, and more
73
+ - **Automatic model routing** — picks the best model for each task based on complexity and cost
74
+ - **Budget governance** — session cost limits, pre-execution estimation, auto-downgrade to cheaper models
75
+
76
+ ### Smart Execution Modes
77
+ - **Direct** — fast single-model answers for simple questions
78
+ - **Deep Think** — extended reasoning with chain-of-thought for complex problems
79
+ - **Consensus** — runs 2-3 models in parallel, compares answers, synthesizes the best response
80
+ - **Autonomous** — multi-step agent loop with planning, tool use, and self-correction
81
+
82
+ ### Built-in Tools
83
+ - **File system** — read, write, search, and manage files
84
+ - **Git** — status, diff, log, commit — full git workflow from chat
85
+ - **Terminal** — execute shell commands with permission controls
86
+ - **Web search** — search the web and fetch page content
87
+ - **MCP support** — connect any MCP-compatible server for extended capabilities
88
+
89
+ ### Research Pipeline
90
+ - **5-stage YOYO pipeline** — Decompose > Search > Analyze > Synthesize > Verify
91
+ - **Multi-source** — web search, academic papers, documentation
92
+ - **Citation tracking** — every claim linked to its source
93
+ - **Export** — Markdown, JSON, or plain text reports
94
+
95
+ ### Creative Generation
96
+ - **Images** — FLUX, DALL-E, Stable Diffusion (text-to-image)
97
+ - **Video** — Kling, Minimax (text-to-video, image-to-video)
98
+ - **Speech** — ElevenLabs, OpenAI TTS (text-to-speech)
99
+ - **Music** — Suno (text-to-music)
100
+
101
+ ### Workflow Engine
102
+ - **YAML-defined pipelines** — chain LLM calls, tool executions, and shell commands
103
+ - **Conditions and loops** — conditional branching and iteration
104
+ - **Parallel execution** — run steps concurrently
105
+ - **Variable passing** — capture outputs and feed into later steps
106
+
107
+ ### Memory & RAG
108
+ - **Persistent memory** — remembers context across sessions
109
+ - **Vector search** — sqlite-vec with 1024-dimensional embeddings
110
+ - **Auto-compaction** — keeps memory lean and relevant
111
+
112
+ ### Security & Permissions
113
+ - **4-tier permission system** — AUTO, SESSION, EVERY_TIME, NEVER
114
+ - **Progressive trust** — permissions escalate based on usage patterns
115
+ - **Audit logging** — every tool execution is logged
116
+ - **Keychain storage** — API keys stored securely via OS keychain
117
+
118
+ ---
119
+
120
+ ## Installation
121
+
122
+ ### From PyPI (recommended)
123
+
124
+ ```bash
125
+ pip install elidia-agent-cli
126
+ ```
127
+
128
+ ### From GitHub Release
129
+
130
+ Download the latest `.whl` file from [Releases](https://github.com/Elidia-Technology/elidia-agent-cli/releases), then:
131
+
132
+ ```bash
133
+ pip install elidia_cli-0.1.0-py3-none-any.whl
134
+ ```
135
+
136
+ ### Requirements
137
+
138
+ - Python 3.11 or higher
139
+ - An AiUtils Developer API key ([get one here](https://developer.aiutils.io))
140
+
141
+ ---
142
+
143
+ ## Quick Start
144
+
145
+ ### 1. Authenticate
146
+
147
+ ```bash
148
+ elidia auth login
149
+ ```
150
+
151
+ You'll be prompted for your AiUtils Developer API key (`ak-dev-...`).
152
+
153
+ ### 2. Start chatting
154
+
155
+ ```bash
156
+ # Interactive REPL
157
+ elidia chat
158
+
159
+ # One-shot query
160
+ elidia chat "Explain async/await in Python"
161
+
162
+ # Specify a model
163
+ elidia chat --model claude-sonnet-5 "Review this function for bugs"
164
+
165
+ # Research mode
166
+ elidia chat --mode research "Compare PostgreSQL vs MongoDB for time-series data"
167
+ ```
168
+
169
+ ### 3. Check your balance
170
+
171
+ ```bash
172
+ elidia auth status
173
+ ```
174
+
175
+ ---
176
+
177
+ ## REPL Commands
178
+
179
+ Once inside the interactive REPL (`elidia chat`), use slash commands:
180
+
181
+ | Command | Description |
182
+ |---|---|
183
+ | `/model [name]` | Switch model or show current |
184
+ | `/mode [mode]` | Switch mode (chat, code, research, think, create) |
185
+ | `/think [level]` | Set thinking depth (minimal, low, medium, high, max) |
186
+ | `/budget` | Show session cost summary |
187
+ | `/research <query>` | Run deep research pipeline |
188
+ | `/create image <prompt>` | Generate an image |
189
+ | `/create video <prompt>` | Generate a video |
190
+ | `/create speech <text>` | Generate speech audio |
191
+ | `/create music <prompt>` | Generate music |
192
+ | `/workflow <file.yaml>` | Execute a YAML workflow |
193
+ | `/tools [category]` | List available tools |
194
+ | `/mcp` | Show MCP server status |
195
+ | `/persona [name]` | Switch agent persona |
196
+ | `/memory search\|save\|forget` | Manage persistent memory |
197
+ | `/history [query]` | Search chat history |
198
+ | `/balance` | Check DT balance |
199
+ | `/cost` | Session cost breakdown |
200
+ | `/theme [name]` | Switch UI theme |
201
+ | `/cache [on\|off]` | Toggle response cache |
202
+ | `/new` | Start new session |
203
+ | `/clear` | Clear conversation |
204
+ | `/help [command]` | Show help |
205
+
206
+ ---
207
+
208
+ ## Configuration
209
+
210
+ Elidia Agent CLI stores configuration in `~/.elidia/config.toml`:
211
+
212
+ ```toml
213
+ [api]
214
+ base_url = "https://developer.aiutils.io/v1"
215
+ timeout_seconds = 120
216
+
217
+ [models]
218
+ default = "deepseek-chat"
219
+ code = "deepseek-chat"
220
+ reasoning = "deepseek-reasoner"
221
+ creative = "auto"
222
+
223
+ [permissions]
224
+ default_level = "session"
225
+
226
+ [budget]
227
+ session_limit_dt = 50.0
228
+ warn_threshold_dt = 40.0
229
+
230
+ [theme]
231
+ name = "default"
232
+ ```
233
+
234
+ ---
235
+
236
+ ## Available Models
237
+
238
+ Elidia Agent CLI supports 30+ models across multiple providers:
239
+
240
+ | Provider | Models |
241
+ |---|---|
242
+ | **Anthropic** | Claude Sonnet 5, Claude Haiku 4.5 |
243
+ | **OpenAI** | GPT-4o, GPT-4o-mini, o3, o4-mini |
244
+ | **Google** | Gemini 2.5 Pro, Gemini 2.5 Flash |
245
+ | **DeepSeek** | DeepSeek Chat, DeepSeek Reasoner |
246
+ | **Meta** | Llama 3.3 70B, Llama 4 Scout, Llama 4 Maverick |
247
+ | **Alibaba** | Qwen 2.5 72B, QwQ 32B |
248
+ | **Mistral** | Mistral Large, Codestral |
249
+ | **Image** | FLUX 1.1 Pro, FLUX Schnell, DALL-E 3, SD 3.5 |
250
+ | **Video** | Kling v2, Minimax Video |
251
+ | **Audio** | ElevenLabs v2, OpenAI TTS, Suno v4 |
252
+
253
+ ---
254
+
255
+ ## Workflow Example
256
+
257
+ Create a `research.yaml` file:
258
+
259
+ ```yaml
260
+ name: competitor-analysis
261
+ description: Research competitors and generate a summary
262
+
263
+ variables:
264
+ topic: "AI coding assistants"
265
+
266
+ steps:
267
+ - name: research
268
+ type: llm
269
+ prompt: "List the top 5 {{topic}} with their key features"
270
+ output: findings
271
+ model: deepseek-chat
272
+
273
+ - name: analyze
274
+ type: llm
275
+ prompt: "Based on these findings, create a comparison table:\n{{findings}}"
276
+ output: analysis
277
+ model: claude-sonnet-5
278
+
279
+ - name: save
280
+ type: shell
281
+ command: "echo '{{analysis}}' > competitor-report.md"
282
+ ```
283
+
284
+ Run it:
285
+
286
+ ```bash
287
+ elidia chat
288
+ > /workflow research.yaml
289
+ ```
290
+
291
+ ---
292
+
293
+ ## MCP Integration
294
+
295
+ Connect any MCP-compatible server for extended tool access:
296
+
297
+ ```toml
298
+ # ~/.elidia/config.toml
299
+ [mcp.servers.filesystem]
300
+ command = "npx"
301
+ args = ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir"]
302
+
303
+ [mcp.servers.github]
304
+ command = "npx"
305
+ args = ["-y", "@modelcontextprotocol/server-github"]
306
+ env = { GITHUB_TOKEN = "ghp_..." }
307
+ ```
308
+
309
+ ---
310
+
311
+ ## Local Models (Experimental)
312
+
313
+ For offline/free usage via Ollama:
314
+
315
+ ```bash
316
+ # Install local model dependencies
317
+ pip install elidia-agent-cli[local]
318
+
319
+ # Use a local model
320
+ elidia chat --model ollama:llama3.2
321
+ ```
322
+
323
+ ---
324
+
325
+ ## API Key
326
+
327
+ Elidia Agent CLI uses the AiUtils Developer API. Get your API key at [developer.aiutils.io](https://developer.aiutils.io).
328
+
329
+ Your key starts with `ak-dev-` and is stored securely in your OS keychain — never in plain text files.
330
+
331
+ ---
332
+
333
+ ## Support
334
+
335
+ - **Issues:** [GitHub Issues](https://github.com/Elidia-Technology/elidia-agent-cli/issues)
336
+ - **Email:** support@aiutils.io
337
+
338
+ ---
339
+
340
+ ## License
341
+
342
+ Proprietary software. Copyright 2026 Elidia Technology Pvt Ltd. All Rights Reserved.
343
+
344
+ See [LICENSE](LICENSE) for full terms.