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 +3 -3
- package/package.json +1 -1
- package/src/index.tsx +3 -3
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.
|
|
156
|
-
info.push("
|
|
157
|
-
info.push("
|
|
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
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.
|
|
192
|
-
info.push("
|
|
193
|
-
info.push("
|
|
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;
|