see if this doesn't upset the machine?

This commit is contained in:
perf3ct 2025-04-14 19:04:30 +00:00
parent e65c5ddd46
commit 6f98e724a8
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232

View File

@ -576,15 +576,17 @@ export default class LlmChatPanel extends BasicWidget {
}
} else {
// Verify the session exists on the server
try {
const sessionExists = await checkSessionExists(this.sessionId);
if (!sessionExists) {
console.log(`Session ${this.sessionId} not found, creating a new one`);
await this.createChatSession();
}
} catch (error) {
console.log(`Error checking session ${this.sessionId}, creating a new one`);
const sessionExists = await checkSessionExists(this.sessionId);
if (!sessionExists) {
console.log(`Session ${this.sessionId} not found, creating a new one`);
await this.createChatSession();
if (!this.sessionId) {
// If still no session ID after attempted creation, show error and return
console.error("Failed to create chat session after session not found");
toastService.showError("Failed to create chat session");
return;
}
}
}