From 12b6ea69777d0921940c5ab9c524968013e4d0b0 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Tue, 3 Jun 2025 15:48:07 -0700 Subject: [PATCH] Fix grammar in attachments docs --- docs/python-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python-api.md b/docs/python-api.md index 7809555..d96c572 100644 --- a/docs/python-api.md +++ b/docs/python-api.md @@ -62,7 +62,7 @@ response = model.prompt( ### Attachments -Model that accept multi-modal input (images, audio, video etc) can be passed attachments using the `attachments=` keyword argument. This accepts a list of `llm.Attachment()` instances. +Models that accept multi-modal input (images, audio, video etc) can be passed attachments using the `attachments=` keyword argument. This accepts a list of `llm.Attachment()` instances. This example shows two attachments - one from a file path and one from a URL: ```python