From 53fc9cbab77e9b5cf821b005ff46fbe7d8aac892 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 3 Sep 2023 14:04:23 -0700 Subject: [PATCH] Fixed hookspec docstrings --- llm/hookspecs.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llm/hookspecs.py b/llm/hookspecs.py index b56b2c7..e7f806b 100644 --- a/llm/hookspecs.py +++ b/llm/hookspecs.py @@ -12,9 +12,9 @@ def register_commands(cli): @hookspec def register_models(register): - "Return a list of model instances representing LLM models that can be called" + "Register additional model instances representing LLM models that can be called" @hookspec def register_embedding_models(register): - "Return a list of model instances that can be used for embedding" + "Register additional model instances that can be used for embedding"