Skip to content

Commit

Permalink
Add note about Placeholder coercion
Browse files Browse the repository at this point in the history
  • Loading branch information
jackmpcollins committed Jan 6, 2025
1 parent 225479d commit b443e09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/vision.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ For more info on the `@chatprompt` decorator, see [Chat Prompting](chat-promptin

## Placeholder

In the previous example, the image url was tied to the function. To provide the image as a function parameter, use `Placeholder`. This substitutes a function argument into the message when the function is called.
In the previous example, the image url was tied to the function. To provide the image as a function parameter, use `Placeholder`. This substitutes a function argument into the message when the function is called. The placeholder will also automatically coerce the argument to the correct type if possible, for example `str` to `ImageUrl`.

```python hl_lines="10"
from magentic import chatprompt, ImageUrl, Placeholder, UserMessage
Expand Down

0 comments on commit b443e09

Please sign in to comment.