We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3b01ec commit 0049921Copy full SHA for 0049921
1 file changed
README.md
@@ -1,9 +1,15 @@
1
-<div align="center">
2
-<!-- Title: -->
3
- <a href="https://github.com/TheAlgorithms/">
4
- <img src="https://raw.githubusercontent.com/TheAlgorithms/website/1cd824df116b27029f17c2d1b42d81731f28a920/public/logo.svg" height="100">
5
- </a>
6
- <h1><a href="https://github.com/TheAlgorithms/">The Algorithms</a> - Python</h1>
+// In your ARIA chat widget - works for ALL platforms
+const response = await fetch('/api/chat', {
+ method: 'POST',
+ headers: { 'Content-Type': 'application/json' },
+ body: JSON.stringify({
+ model: 'claude-sonnet-4-6',
7
+ max_tokens: 1000,
8
+ system: 'You are ARIA, SecureID security advisor...',
9
+ messages: conversationHistory
10
+ })
11
+});
12
+const data = await response.json();
13
14
<!-- Labels: -->
15
<!-- First row: -->
0 commit comments