@emend-ai/utim 1.46.34 → 1.46.36
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 +18 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -131,18 +131,24 @@ Inside the interactive chat terminal, type these slash commands for direct works
|
|
|
131
131
|
npm install -g @emend-ai/utim
|
|
132
132
|
```
|
|
133
133
|
|
|
134
|
-
### pip (from PyPI)
|
|
135
|
-
```bash
|
|
136
|
-
pip install utim-cli
|
|
137
|
-
# Full install with optional features (web search, images, parsers)
|
|
138
|
-
pip install "utim-cli[full]"
|
|
139
|
-
```
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
134
|
+
### pip (from PyPI)
|
|
135
|
+
```bash
|
|
136
|
+
pip install utim-cli
|
|
137
|
+
# Full install with optional features (web search, images, parsers)
|
|
138
|
+
pip install "utim-cli[full]"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
Desktop installs include the normal SDK/MCP path automatically. Mobile/Termux
|
|
142
|
+
installs keep those native-heavy pieces optional to avoid `pydantic-core`; use
|
|
143
|
+
`utim-cli[mcp]` or `utim-cli[legacy-agent]` only if you explicitly need them.
|
|
144
|
+
Do not install `utim_cli/server/requirements.txt` unless you are deploying the
|
|
145
|
+
server.
|
|
146
|
+
|
|
147
|
+
### Source install (development)
|
|
148
|
+
```bash
|
|
149
|
+
git clone https://github.com/emendai/utim.git
|
|
150
|
+
cd utim
|
|
151
|
+
pip install -e ".[full]"
|
|
146
152
|
```
|
|
147
153
|
|
|
148
154
|
### Smoke-test your install
|