File size: 327 Bytes
ce23758
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
    (async () => {
        const resp = await puter.ai.chat('good', {model: 'grok-beta', stream: true });
        for await ( const part of resp ) puter.print(part?.text?.replaceAll('\n', '<br>'));
    })();
    </script>
</body>
</html>