Skip to content

Commit

Permalink
Fix a typo (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
nakamichiworks authored Aug 12, 2023
1 parent 3bfcfd5 commit a802bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/plugins/tutorial-model-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit a802bfb

Please sign in to comment.