We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfa5909 commit 2953893Copy full SHA for 2953893
‎packages/core/src/common/errors.ts‎
@@ -108,6 +108,9 @@ export class APIConnectionError extends APIError {
108
109
constructor({message, cause}: {message?: string; cause?: Error}) {
110
super(undefined, undefined, message || 'Connection error.', undefined);
111
+ console.warn(
112
+ `\nPlease check if BaseAI dev server is running. If not, run 'npx baseai dev' in the root directory.\n`,
113
+ );
114
if (cause) (this as Error).cause = cause;
115
}
116
0 commit comments