feat: integrate llm-backed routing with fallback

This commit is contained in:
Remi
2025-10-16 19:55:13 +02:00
parent ef38542c54
commit 649cae11bc
4 changed files with 180 additions and 127 deletions

13
tsconfig.tests.json Normal file
View File

@@ -0,0 +1,13 @@
{
"extends": "./tsconfig.scripts.json",
"compilerOptions": {
"paths": {
"#imports": ["./tests/stubs/nuxt-imports.ts"],
"~~/*": ["./*"],
"@@/*": ["./*"],
"~/\*": ["./app/*"],
"@/*": ["./app/*"]
}
},
"include": ["server/**/*.ts", "shared/**/*.ts", "tests/**/*.ts"]
}