Skip to content

Commit 7fc9a97

Browse files
Fix prompt caching example broken character (#2750)
1 parent 55bdd50 commit 7fc9a97

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/docs/src/AI/chat.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,11 +429,11 @@ Policy 7 - Support Escalation: Level 1 (General Support): Available to all tiers
429429
}
430430
431431
(async () => {
432-
puter.print("<b>Call 1 (cache write first time processing system prompt)</b><br>");
432+
puter.print("<b>Call 1 (cache write: first time processing system prompt)</b><br>");
433433
const r1 = await askQuestion("How do I get a refund?");
434434
puter.print(r1 + "<br><br>");
435435
436-
puter.print("<b>Call 2 (cache hit system prompt reused from cache)</b><br>");
436+
puter.print("<b>Call 2 (cache hit: system prompt reused from cache)</b><br>");
437437
const r2 = await askQuestion("What are your API rate limits?");
438438
puter.print(r2 + "<br><br>");
439439

src/docs/src/playground/examples/ai-claude-cache-control.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
}
3232

3333
(async () => {
34-
puter.print("<b>Call 1 (cache write first time processing system prompt)</b><br>");
34+
puter.print("<b>Call 1 (cache write: first time processing system prompt)</b><br>");
3535
const r1 = await askQuestion("How do I get a refund?");
3636
puter.print(r1 + "<br><br>");
3737

38-
puter.print("<b>Call 2 (cache hit system prompt reused from cache)</b><br>");
38+
puter.print("<b>Call 2 (cache hit: system prompt reused from cache)</b><br>");
3939
const r2 = await askQuestion("What are your API rate limits?");
4040
puter.print(r2 + "<br><br>");
4141

0 commit comments

Comments
 (0)