Skip to content

Commit abc9b36

Browse files
committed
update: add completion feature
1 parent 24a7940 commit abc9b36

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# gemma-cpp-python: Python Bindings for [gemma.cpp](https://github.com/google/gemma.cpp)
22

3-
**Latest Version: v0.1.1**
4-
- Work for both Linux an MacOS machine
5-
- Remove the pybind11 from vendors
3+
**Latest Version: v0.1.2**
4+
- Support Completion function
5+
- Fix the MacOS pip install
66

77
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
88

@@ -18,7 +18,7 @@ Special thanks to the creators and contributors of [gemma.cpp](https://github.co
1818
### Install from PyPI
1919
For a quick setup, install directly from PyPI:
2020
```bash
21-
pip install pygemma==0.1.0
21+
pip install pygemma==0.1.2
2222
```
2323

2424
### For Developers: Install from Source

scripts/release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
rm -rf dist/*
2+
python3 setup.py sdist bdist_wheel
3+
delocate-wheel -w fixed_wheels -v dist/*.whl

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def build_extension(self, ext):
5555

5656
setup(
5757
name="pygemma",
58-
version="0.1.1",
58+
version="0.1.2",
5959
author="Nam Tran",
6060
author_email="namtran.ase@gmail.com",
6161
description="A Python package with a C++ backend using gemma.",

0 commit comments

Comments
 (0)