310
level: ChatErrorLevel.Info,
311
};
313
return { message: localize('chatError.somethingWrong', "Sorry, something went wrong.") };
315
return { message: reason };
317
return { message: localize('chatError.length', "Sorry, the response hit the length limit. Please rephrase your prompt.") };
319
return { message: localize('chatError.notFound', "Sorry, the resource was not found.") };
321
return { message: localize('chatError.unknown', "Sorry, no response was returned.") };
323
return { message: localize('chatError.extensionBlocked', "Sorry, something went wrong.") };
325
// should be unreachable, retried within the endpoint
326
return { message: localize('chatError.invalidStatefulMarker', "Your chat session state is invalid, please start a new chat.") };
328
return { message: reason || localize('chatError.somethingWrong', "Sorry, something went wrong.") };
330
>
}
331
332
/**