From 9d3bbb05a8fab80f754a961df3e21012d5dc82b3 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 12 May 2025 11:50:13 -0700 Subject: [PATCH] Show tool support on 'llm models --options' --- llm/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/llm/cli.py b/llm/cli.py index 8210072..58a4fa5 100644 --- a/llm/cli.py +++ b/llm/cli.py @@ -1857,6 +1857,7 @@ def models_list(options, async_, schemas, query, model_ids): [] + (["streaming"] if model.can_stream else []) + (["schemas"] if model.supports_schema else []) + + (["tools"] if model.supports_tools else []) + (["async"] if model_with_aliases.async_model else []) ) if options and features: