8000 Update README · coderonion/llama-cpp-python@b9a4513 · GitHub
[go: up one dir, main page]

Skip to content

Commit b9a4513

Browse files
committed
Update README
1 parent 7284adc commit b9a4513

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,33 @@ pip install llama-cpp-python
5050
}
5151
```
5252

53+
# Documentation
54+
55+
Documentation is available at [https://abetlen.github.io/llama-cpp-python](https://abetlen.github.io/llama-cpp-python).
56+
If you find any issues with the documentation, please open an issue or submit a PR.
57+
58+
# Development
59+
60+
This package is under active development and I welcome any contributions.
61+
62+
To get started, clone the repository and install the package in development mode:
63+
64+
```bash
65+
git clone git@github.com:abetlen/llama-cpp-python.git
66+
git submodule update --init --recursive
67+
# Will need to be re-run any time vendor/llama.cpp is updated
68+
python3 setup.py develop
69+
```
70+
71+
# How does this compare to other Python bindings of `llama.cpp`?
72+
73+
I wrote this package for my own use, I had two goals in mind:
74+
75+
- Provide a simple process to install `llama.cpp` and access the full C API in `llama.h` from Python
76+
- 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`
77+
78+
Any contributions and changes to this package will be made with these goals in mind.
79+
5380
# License
5481

5582
This project is licensed under the terms of the MIT license.

0 commit comments

Comments
 (0)
0