1
import { Agent } from '@fluxloop/sdk';
2
3
@fluxloop.agent({
4
name: 'booking-assistant',
5
model: 'gpt-4-turbo'
6
})
01
Never Leave Your IDE
Install FluxLoop extension. Add
@fluxloop.agent()
decorator. That's it. Your tools, database, APIs work as-is.
Everything runs locally in VSCode.
Verbose
I would strictly like to book a flight...
Edge
Flight to NRT, pay with crypto?
Persona
As a senior citizen, I need...
02
Start with Only One Sentence
Enter a single test input:
"Book a flight to Tokyo"
.
FluxLoop auto-generates variations: Verbose, adversarial, edge
cases, different personas.
No CSV files
No manual setup
Duration: 5.2s (Threshold: 2s)
Add index to `flights` table
03
Know What Broke and Why
Not "Score: 3.6". Get specific failures and recommendations.
✗ Response time exceeded 5s
→ Optimize database query in booking flow
Clear diagnosis. Clear next steps.
04
Test with Your Actual Tools
Not mocked APIs or fake databases. Your real tools, real
integrations, real environment.
See how your agent actually performs.