import { select, multiSelect } from "@agentview/studio";
export default defineConfig({
agents: [
{
name: "weather-chat",
runs: [
{
output: {
schema: ...,
scores: [
select({
name: "forecast_accuracy",
title: "Forecast Accuracy",
options: [
{ value: "accurate", label: "Accurate", color: Colors.green },
{ value: "partially_accurate", label: "Partially Accurate", color: Colors.yellow },
{ value: "inaccurate", label: "Inaccurate", color: Colors.red },
]
}),
multiSelect({
name: "style",
title: "Style",
options: [
{ value: "too-long", label: "Too long" },
{ value: "too-brief", label: "Too brief" },
{ value: "confusing", label: "Confusing" },
{ value: "overly-technical", label: "Overly technical" },
]
})
]
}
}
]
}
]
})