spb/vquant Public MIT
VibeQuant — AI-powered institutional-grade financial intelligence platform.
TypeScript 84.3%
Python 11.7%
JavaScript 1.6%
CSS 1.5%
HTML 0.7%
1/*2 * =============================================================================3 * VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 * File: desktop/preload.js6 *7 * Author: Simon-Pierre Boucher8 * Contact: contact@spboucher.ai9 * Website: https://www.spboucher.ai10 * Demo: https://www.vquant.ai11 * License: MIT (see LICENSE)12 *13 * Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617const { contextBridge, ipcRenderer } = require('electron');1819contextBridge.exposeInMainWorld('vquant', {20 getApiKeys: () => ipcRenderer.invoke('get-api-keys'),21 saveApiKeys: (keys) => ipcRenderer.invoke('save-api-keys', keys),22 getSetupComplete: () => ipcRenderer.invoke('get-setup-complete'),23 openExternal: (url) => ipcRenderer.invoke('open-external', url),24 getAppVersion: () => ipcRenderer.invoke('get-app-version'),25 getTheme: () => ipcRenderer.invoke('get-theme'),26 onSetupStatus: (callback) => {27 ipcRenderer.on('setup-status', (_event, status) => callback(status));28 },29});30