feat: solution for '8. Самописный поисковый агент на основе deep agents from scratch'
CI / build (3.1) (push) Has been cancelled
CI / build (3.11) (push) Has been cancelled
CI / build (3.8) (push) Has been cancelled
CI / build (3.9) (push) Has been cancelled

This commit is contained in:
2026-07-01 13:50:40 +03:00
parent 9dafd2991f
commit fea117b469
6 changed files with 160 additions and 124 deletions
+10
View File
@@ -0,0 +1,10 @@
import { ask } from "./src/index.js";
async function runTest() {
const query = "What is the capital of France?";
console.log(`Query: ${query}`);
const answer = await ask(query);
console.log(`Answer: ${answer}`);
}
runTest().catch(console.error);