codemaxxing 0.1.11 → 0.1.12

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/index.js CHANGED
@@ -152,9 +152,9 @@ function App() {
152
152
  setConnectionInfo([...info]);
153
153
  }
154
154
  else {
155
- info.push("✗ No local LLM server found. Start LM Studio or Ollama.");
156
- info.push(" Use --base-url and --api-key to connect to a remote provider.");
157
- info.push(" Type /login to authenticate, or /connect to retry.");
155
+ info.push("✗ No local LLM server found.");
156
+ info.push(" /connect — retry after starting LM Studio or Ollama");
157
+ info.push(" /login authenticate with a cloud provider");
158
158
  setConnectionInfo([...info]);
159
159
  setReady(true);
160
160
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codemaxxing",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "Open-source terminal coding agent. Connect any LLM. Max your code.",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
package/src/index.tsx CHANGED
@@ -188,9 +188,9 @@ function App() {
188
188
  info.push(`✔ Connected to ${provider.baseUrl} → ${provider.model}`);
189
189
  setConnectionInfo([...info]);
190
190
  } else {
191
- info.push("✗ No local LLM server found. Start LM Studio or Ollama.");
192
- info.push(" Use --base-url and --api-key to connect to a remote provider.");
193
- info.push(" Type /login to authenticate, or /connect to retry.");
191
+ info.push("✗ No local LLM server found.");
192
+ info.push(" /connect — retry after starting LM Studio or Ollama");
193
+ info.push(" /login authenticate with a cloud provider");
194
194
  setConnectionInfo([...info]);
195
195
  setReady(true);
196
196
  return;