Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,9 @@ This project also works well with papers from [PubMed](https://pubmed.ncbi.nlm.n
The examples below use an AutoAWQ model, make sure to install that dependency first.

```
pip install annotateai autoawq[kernels]
pip install annotateai \
autoawq \
autoawq-kernels
```

The primary input parameter is the path to the LLM. This project is backed by [txtai](https://github.com/neuml/txtai) and it supports any [txtai-supported LLM](https://neuml.github.io/txtai/pipeline/text/llm/).
Expand Down Expand Up @@ -152,4 +154,4 @@ The progress bar can be disabled as follows:

```python
annotate("https://arxiv.org/pdf/2005.11401", progress=False)
```
```