feat: refactor HomePage to integrate agents store and update related components
feat: add runtime event handling for providers in ProvidersSection feat: update routing to include Channels and Agents pages feat: extend route types and navigation items for Channels and Agents feat: implement agents store for managing agent data and interactions fix: update chat store to utilize agents store for agent-related functionality chore: export agents store from index fix: enhance runtime types for better event handling fix: update Vite config to handle dev server URL correctly
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
import * as fs from 'fs';
|
||||
import * as path from 'path';
|
||||
import { app } from 'electron';
|
||||
import logManager from '@electron/service/logger';
|
||||
import { normalizeAgentSessionKey } from '@runtime/lib/models';
|
||||
import type { RawMessage } from '@runtime/shared/chat-model';
|
||||
import { getUserDataDir } from '@electron/utils/paths';
|
||||
|
||||
let sessionsFilePath: string | null = null;
|
||||
|
||||
function getSessionsFilePath(): string {
|
||||
if (!sessionsFilePath) {
|
||||
sessionsFilePath = path.join(app.getPath('userData'), 'chat-sessions.json');
|
||||
sessionsFilePath = path.join(getUserDataDir(), 'chat-sessions.json');
|
||||
}
|
||||
return sessionsFilePath;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user