From be55a71b156160d8649c34c2223953e9e770d27e Mon Sep 17 00:00:00 2001 From: Jorge Date: Mon, 24 Jul 2023 12:43:25 -0300 Subject: [PATCH] Fix for error in templates.md Thanks @dokeet --- docs/templates.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/templates.md b/docs/templates.md index 9a6b509..9e609bd 100644 --- a/docs/templates.md +++ b/docs/templates.md @@ -32,13 +32,13 @@ llm --system 'Summarize this text in the voice of $voice' \ You can execute a named template using the `-t/--template` option: ```bash -curl -s https://example.com/ | llm -t summary +curl -s https://example.com/ | llm -t summarize ``` This can be combined with the `-m` option to specify a different model: ```bash curl -s https://llm.datasette.io/en/latest/ | \ - llm -t summary -m gpt-3.5-turbo-16k + llm -t summarize -m gpt-3.5-turbo-16k ``` ## Templates as YAML files