Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 0.0.7 #47

Merged
merged 1 commit into from
Aug 24, 2024
Merged
Show file tree
Hide file tree
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
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,17 +84,21 @@ If pre-built wheels cannot meet your requirements, you can install Nexa SDK from
pip install nexaai
```

####FAQ
<details>
<summary><strong>FAQ: Building Issues for llava</strong></summary>

If you encounter the following issue while building:

If you met following issue while building
![](docs/.media/error.jpeg)

try following command
try the following command:

```bash
CMAKE_ARGS="-DCMAKE_CXX_FLAGS=-fopenmp" pip install nexaai
```

</details>

#### GPU (Metal)

For the GPU version supporting Metal (macOS):
Expand Down
2 changes: 1 addition & 1 deletion nexa/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.6.post2"
__version__ = "0.0.7"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Nexa AI", email = "[email protected]" }]
dependencies = [
"cmake", # For building C++ extensions
"faster_whisper",
"typing-extensions>=4.5.0", # For ggml
"numpy>=1.20.0",
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
build
wheel
twine
cmake # For building C++ extensions

# Faster Whisper
faster_whisper
Expand Down
Loading