feat(vwb): ajout mode 'Vérifié' dans le sélecteur d'exécution
Some checks failed
security-audit / Bandit (scan statique) (push) Successful in 12s
security-audit / pip-audit (CVE dépendances) (push) Successful in 12s
security-audit / Scan secrets (grep) (push) Successful in 9s
tests / Lint (ruff + black) (push) Successful in 14s
tests / Tests unitaires (sans GPU) (push) Failing after 14s
tests / Tests sécurité (critique) (push) Has been skipped
Some checks failed
security-audit / Bandit (scan statique) (push) Successful in 12s
security-audit / pip-audit (CVE dépendances) (push) Successful in 12s
security-audit / Scan secrets (grep) (push) Successful in 9s
tests / Lint (ruff + black) (push) Successful in 14s
tests / Tests unitaires (sans GPU) (push) Failing after 14s
tests / Tests sécurité (critique) (push) Has been skipped
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
// Types pour l'API v3
|
||||
|
||||
// Mode d'exécution
|
||||
export type ExecutionMode = 'basic' | 'intelligent' | 'debug';
|
||||
export type ExecutionMode = 'basic' | 'intelligent' | 'debug' | 'verified';
|
||||
|
||||
export const EXECUTION_MODES: Record<ExecutionMode, { label: string; icon: string; description: string }> = {
|
||||
basic: {
|
||||
@@ -18,6 +18,11 @@ export const EXECUTION_MODES: Record<ExecutionMode, { label: string; icon: strin
|
||||
label: 'Debug',
|
||||
icon: '🔍',
|
||||
description: 'Intelligent + overlay détection'
|
||||
},
|
||||
verified: {
|
||||
label: 'Vérifié',
|
||||
icon: '✅',
|
||||
description: 'Boucle ORA : observe, agit, vérifie chaque étape'
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user