From 004992195054e1e6f0e2c8811ae15c94ccef6151 Mon Sep 17 00:00:00 2001 From: Crisha Ternal Date: Tue, 23 Jun 2026 01:23:11 +0800 Subject: [PATCH] Update README.md --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 182d36a8d905..c4d0abd86207 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,15 @@ -
- - - - -

The Algorithms - Python

+// 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', + max_tokens: 1000, + system: 'You are ARIA, SecureID security advisor...', + messages: conversationHistory + }) +}); +const data = await response.json();