Update README.md
Browse files
README.md
CHANGED
@@ -37,4 +37,18 @@ Before using the `felguk-omni-v0` model, ensure you have the Nexa-SDK installed.
|
|
37 |
You can install the Nexa-SDK via pip:
|
38 |
|
39 |
```bash
|
40 |
-
pip install nexa-sdk
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
You can install the Nexa-SDK via pip:
|
38 |
|
39 |
```bash
|
40 |
+
pip install nexa-sdk
|
41 |
+
```
|
42 |
+
## Downloading the Model
|
43 |
+
To download the felguk-omni-v0 model using Nexa-SDK, run the following command:
|
44 |
+
```bash
|
45 |
+
from nexa_sdk import ModelDownloader
|
46 |
+
|
47 |
+
# Initialize the downloader
|
48 |
+
downloader = ModelDownloader()
|
49 |
+
|
50 |
+
# Download the model
|
51 |
+
model = downloader.download_model("felguk-omni-v0")
|
52 |
+
|
53 |
+
print("Model downloaded successfully!")
|
54 |
+
```
|