From a802bfbbb021a10973e72c97b9b610c70e58a1e4 Mon Sep 17 00:00:00 2001 From: nakamichi Date: Sun, 13 Aug 2023 01:40:14 +0900 Subject: [PATCH] Fix a typo (#148) --- docs/plugins/tutorial-model-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/plugins/tutorial-model-plugin.md b/docs/plugins/tutorial-model-plugin.md index 95e4bba4..22df68c7 100644 --- a/docs/plugins/tutorial-model-plugin.md +++ b/docs/plugins/tutorial-model-plugin.md @@ -30,7 +30,7 @@ class Markov(llm.Model): The `def register_models()` function here is called by the plugin system (thanks to the `@hookimpl` decorator). It uses the `register()` function passed to it to register an instance of the new model. -The `Markov` class implements the model. It sets a `model_id` - an identifier that can be passed to `ll -m` in order to identify the model to be executed. +The `Markov` class implements the model. It sets a `model_id` - an identifier that can be passed to `llm -m` in order to identify the model to be executed. The logic for executing the model goes in the `execute()` method. We'll extend this to do something more useful in a later step.