blob: e247b2c7db92cb255e19461ae5536baa8c550d35 [file]
<!DOCTYPE html>
<body>
<script>
async function echo(obj) {
return new Promise(r => setTimeout(() => r(obj.text), 1000));
}
navigator.modelContext.registerTool({
execute: echo, name: "echo", description: "echo input",
inputSchema: {
type: "object",
properties: {
"text": {
type: "string"
}
},
required: ["text"]
}
});
</script>
</body>