feat: solution for 'Повторный экзамен: Граф с рефлексией и доработкой'

This commit is contained in:
2026-06-30 16:42:32 +03:00
parent 57a7f1d12b
commit 9ff9612bbb
5 changed files with 83 additions and 24 deletions
+10
View File
@@ -0,0 +1,10 @@
import { app } from './langgraph';
async function main() {
const result = await app.invoke({ input: 'Hello world' });
console.log('Final result:', result);
}
main().catch((err) => {
console.error('Error during execution:', err);
});