Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/advanced/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ then come back.

## A clock with a face

```python title="server.py" hl_lines="18 21 29 31"
```python title="server.py" hl_lines="19 22 30 32"
--8<-- "docs_src/apps/tutorial001.py"
```

Expand Down Expand Up @@ -51,7 +51,7 @@ The model reads `content`; the iframe is for humans. A UI-capable host still fee
the text result to the model, and a text-only client gets *only* that. So the
canonical pattern is one tool, two answers. Look at `get_time` again:

```python title="server.py" hl_lines="22-26"
```python title="server.py" hl_lines="23-27"
--8<-- "docs_src/apps/tutorial001.py"
```

Expand Down
Loading