Skip to content

Commit 78905f5

Browse files
committed
fix promptl content types docs
1 parent 04be40d commit 78905f5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/promptl/syntax/messages.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,17 +109,17 @@ Messages can contain different types of content. By default, all plain text is c
109109
- **Tool Call**: `<content type="tool-call">` or `<tool-call>`. Represents a tool invocation with attributes like `id`, `name`, and `arguments` (optional). Only allowed inside assistant messages.
110110

111111
<Note>
112-
Not all providers and all models will support all content types. Check your provider's documentation for compatibility.
112+
Not all providers and all models will support all content types. Your provider may support files but not all types of files. Check your provider's documentation for compatibility.
113113
</Note>
114114

115115
### Examples
116116
```tsx
117117
<user>
118118
Take a look at this image:
119-
<content-image>[image url]</content>
119+
<content-image>[image url]</content-image>
120120

121121
And this PDF:
122-
<content-file mime="application/pdf">[file url]</content>
122+
<content-file mime="application/pdf">[file url]</content-file>
123123
</user>
124124

125125
<assistant>

0 commit comments

Comments
 (0)