File size: 644 Bytes
17bc454
 
f483e2a
 
 
7896e48
 
6ab4763
7896e48
 
 
 
 
 
 
f483e2a
 
17bc454
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!doctype html>
<html>
<body>
    <script src="https://js.puter.com/v2/"></script>
    <script>
        (async () => {
            const response = await puter.ai.chat(
                "چطور از puter برای ساخت و استفاده از برنامه خودم از ای پی ای رایگان استفاده کنم ؟برنامه من وابسته به هوشمصنوعی کار خواهد کرد", 
                {model: 'claude-sonnet-4-5', stream: true}
            );
            
            for await (const part of response) {
                puter.print(part?.text);
            }
        })();
    </script>
</body>
</html>