File size: 344 Bytes
7fcdb70
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
// Application configuration
export const config = {
  // WebSocket URL for backend connection
  wsUrl: 'ws://localhost:8000/ws',

  // API Base URL
  apiBaseUrl: 'http://localhost:8000/api/v1',

  // Default model (will be overridden by first available model from backend)
  defaultModelId: 'Qwen/Qwen3-VL-8B-Instruct',
} as const;