Files
BrowserOS/webpack.config.js
Felarof 4549ba7810 Braintrust basic evals (#87)
* implement validator eval

* implement online eval foundation

* further implementing online evals

* enhance evaluation data logging

* implement LLM scoring, remove redundant EventEnricher

* cleanup

* fix build errs from merging, extend LLM scorer context

* settled evaluation framework

* update evals documentation

* fix evals screenshots

* fix typos

* Evals config moved to env variables and tested

* test

* Update manifest to 49.1

* Removed duplciate + button

* Just use previous way of registering tools as that is not required for evals

* Add claude commands for research, plan and implement

* evals2 research and plan

implementation plan

new implementation plan

* Evals2 implementation

test test

* Removed old eval hooks

Remove old evals hooks

* evals 2 added to env

* Eval2 enhancement plan

backup

* Make Braintrust project configurable

Make Braintrust project configurable

* Enhanced scorer -- using Gemini 2.5 pro for evaluation

backup v0.1

enhancement v0.2

v0.2

backup v0.3

backup v0.4

* Deleted old evals directory

* Clean up old evals code

* Bunch of fixes and improvements

backup

fixes 0.1

more fixes

fixes

more elaborate prompts

braintrust logger fix

* Renamed files

backup
2025-09-05 18:04:07 -07:00

182 lines
5.6 KiB
JavaScript

const path = require('path')
const HtmlWebpackPlugin = require('html-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const webpack = require('webpack')
const TerserPlugin = require('terser-webpack-plugin')
const dotenv = require('dotenv')
const fs = require('fs')
const ExtensionReloader = require('webpack-ext-reloader')
// Load .env file
let envKeys = {}
// Load environment variables from .env file
const env = dotenv.config()
envKeys = env.parsed || {}
// Validate required API keys
if (!env.parsed) {
throw new Error('No .env file found. API keys must be set manually.')
}
// Create environment variables to inject
const processEnv = {
'process.env.POSTHOG_API_KEY': JSON.stringify(envKeys.POSTHOG_API_KEY || ''),
'process.env.KLAVIS_API_KEY': JSON.stringify(envKeys.KLAVIS_API_KEY || ''),
'process.env.NODE_ENV': JSON.stringify(process.env.NODE_ENV || 'development'),
// Braintrust Telemetry Configuration
'process.env.ENABLE_TELEMETRY': JSON.stringify(envKeys.ENABLE_TELEMETRY || 'false'),
'process.env.ENABLE_EVALS2': JSON.stringify(envKeys.ENABLE_EVALS2 || 'false'),
'process.env.BRAINTRUST_API_KEY': JSON.stringify(envKeys.BRAINTRUST_API_KEY || ''),
'process.env.BRAINTRUST_PROJECT_UUID': JSON.stringify(envKeys.BRAINTRUST_PROJECT_UUID || ''),
'process.env.BRAINTRUST_PROJECT_NAME': JSON.stringify(envKeys.BRAINTRUST_PROJECT_NAME || 'browseros-agent-online'),
// Gemini API keys for evals2 scoring
'process.env.GOOGLE_GENAI_API_KEY': JSON.stringify(envKeys.GOOGLE_GENAI_API_KEY || ''),
'process.env.GEMINI_API_KEY': JSON.stringify(envKeys.GEMINI_API_KEY || '')
}
console.log('API keys will be injected at build time (keys hidden for security)')
// Determine environment (default to development if not specified)
const isDevelopment = process.env.NODE_ENV !== 'production'
// Detect if this is a Chrome build
const isChromeTarget = process.env.BUILD_TARGET === 'chrome'
// Detect if webpack is running in watch mode (CLI flag or env variable set by webpack)
const isWatch = process.argv.includes('--watch') || process.env.WEBPACK_WATCH === 'true'
module.exports = {
mode: isDevelopment ? 'development' : 'production',
devtool: isDevelopment ? 'source-map' : false,
entry: {
sidepanel: './src/sidepanel/index.tsx',
background: './src/background/index.ts',
'glow-animation': './src/content/glow-animation.ts',
newtab: './src/newtab/index.tsx'
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js'
},
module: {
rules: [
{
test: /\.tsx?$/,
use: {
loader: 'ts-loader',
options: {
onlyCompileBundledFiles: true
}
},
exclude: [
/node_modules/,
/\.(test|spec)\.(ts|tsx)$/
]
},
{
test: /\.scss$/,
use: [
'style-loader',
{
loader: 'css-loader',
options: {
modules: {
localIdentName: '[name]__[local]--[hash:base64:5]'
}
}
},
{
loader: 'sass-loader',
options: {
api: 'modern' // Use the modern Sass API
}
}
]
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader',
'postcss-loader'
]
}
]
},
resolve: {
extensions: ['.tsx', '.ts', '.js'],
alias: {
'@': path.resolve(__dirname, 'src')
}
},
optimization: {
splitChunks: false, // Disable all code splitting
runtimeChunk: false, // Keep runtime in each entry point
// Configure minimizer to prevent LICENSE file generation in production
minimizer: isDevelopment ? [] : [
new TerserPlugin({
extractComments: false, // Disable LICENSE file extraction
terserOptions: {
format: {
comments: false, // Remove all comments
},
compress: { // Remove console and debugger statements in production
drop_console: true,
drop_debugger: true
},
},
}),
],
},
plugins: [
// Limit chunks to entry points only - prevents dynamic chunk creation
// This forces all imports (including dynamic) to be bundled into their parent entry
new webpack.optimize.LimitChunkCountPlugin({
maxChunks: 4 // One chunk per entry point (sidepanel, background, glow-animation, newtab)
}),
new HtmlWebpackPlugin({
template: './src/sidepanel/index.html',
filename: 'sidepanel.html',
chunks: ['sidepanel']
}),
new HtmlWebpackPlugin({
template: './src/newtab/index.html',
filename: 'newtab.html',
chunks: ['newtab']
}),
new CopyPlugin({
patterns: [
{
from: 'manifest.json',
to: '.',
transform: (content) => {
if (isChromeTarget) {
const manifest = JSON.parse(content.toString());
manifest.component = true;
return JSON.stringify(manifest, null, 2);
}
return content;
}
},
{ from: 'assets', to: 'assets', noErrorOnMissing: true }
]
}),
new webpack.DefinePlugin(processEnv),
// Include hot-reload plugin only when in development AND watch mode to allow interactive dev
...(isDevelopment && isWatch
? [
new ExtensionReloader({
port: 9090,
reloadPage: true,
entries: {
background: 'background',
contentScript: 'content',
extensionPage: ['sidepanel']
}
})
]
: [])
]
}