Update README
This commit is contained in:
parent
7284adcaa8
commit
b9a4513363
1 changed files with 27 additions and 0 deletions
27
README.md
27
README.md
|
@ -50,6 +50,33 @@ pip install llama-cpp-python
|
|||
}
|
||||
```
|
||||
|
||||
# Documentation
|
||||
|
||||
Documentation is available at [https://abetlen.github.io/llama-cpp-python](https://abetlen.github.io/llama-cpp-python).
|
||||
If you find any issues with the documentation, please open an issue or submit a PR.
|
||||
|
||||
# Development
|
||||
|
||||
This package is under active development and I welcome any contributions.
|
||||
|
||||
To get started, clone the repository and install the package in development mode:
|
||||
|
||||
```bash
|
||||
git clone git@github.com:abetlen/llama-cpp-python.git
|
||||
git submodule update --init --recursive
|
||||
# Will need to be re-run any time vendor/llama.cpp is updated
|
||||
python3 setup.py develop
|
||||
```
|
||||
|
||||
# How does this compare to other Python bindings of `llama.cpp`?
|
||||
|
||||
I wrote this package for my own use, I had two goals in mind:
|
||||
|
||||
- Provide a simple process to install `llama.cpp` and access the full C API in `llama.h` from Python
|
||||
- Provide a high-level Python API that can be used as a drop-in replacement for the OpenAI API so existing apps can be easily ported to use `llama.cpp`
|
||||
|
||||
Any contributions and changes to this package will be made with these goals in mind.
|
||||
|
||||
# License
|
||||
|
||||
This project is licensed under the terms of the MIT license.
|
||||
|
|
Loading…
Reference in a new issue