Skip to content

Commit

Permalink
Prep for initial release
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jul 12, 2023

Unverified

The committer email address is not verified.
1 parent 855ee3c commit 657ca50
Showing 4 changed files with 4 additions and 10 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -48,4 +48,3 @@ jobs:
run: |
python -m build
twine upload dist/*
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -22,9 +22,6 @@ jobs:
- name: Install dependencies
run: |
pip install '.[test]'
pip uninstall llm -y
# Install llm from GitHub until plugins are out in a release
pip install https://github.com/simonw/llm/archive/refs/heads/register-models.zip
- name: Run tests
run: |
pytest
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -7,14 +7,12 @@

Plugin for [LLM](https://llm.datasette.io/) adding a [Markov chain](https://en.wikipedia.org/wiki/Markov_chain) generating model

> ⚠️ This plugin is in development, and will not work until the next release of LLM. See [this PR](https://github.com/simonw/llm/pull/65) for progress.
## Installation

Install this plugin in the same environment as LLM.

llm install llm-markov

```bash
llm install llm-markov
```
## Usage

This plugin adds a model called `markov`. You can execute it like this:
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@ def get_long_description():
version=VERSION,
packages=["llm_markov"],
entry_points={"llm": ["llm_markov = llm_markov"]},
install_requires=["llm"],
install_requires=["llm>=0.5"],
extras_require={"test": ["pytest"]},
python_requires=">=3.7",
)

0 comments on commit 657ca50

Please sign in to comment.