forked from nomic-ai/gpt4all
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added modal labs example to documentation (nomic-ai#556)
- Loading branch information
1 parent
d0bfa6b
commit d94f37c
Showing
4 changed files
with
40 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# GPT4All with Modal Labs | ||
|
||
You can easily query any GPT4All model on [Modal Labs](https://modal.com/) infrastructure! | ||
## Example | ||
|
||
```python | ||
import modal | ||
|
||
def download_model(): | ||
import gpt4all | ||
#you can use any model from https://gpt4all.io/models/models.json | ||
return gpt4all.GPT4All("ggml-gpt4all-j-v1.3-groovy.bin") | ||
|
||
image=modal.Image.debian_slim().pip_install("gpt4all").run_function(download_model) | ||
|
||
stub = modal.Stub("gpt4all", image=image) | ||
|
||
@stub.cls(keep_warm=1) | ||
class GPT4All: | ||
def __enter__(self): | ||
print("Downloading model") | ||
self.gptj = download_model() | ||
print("Loaded model") | ||
|
||
def generate(self): | ||
messages = [{"role": "user", "content": "Name 3 colors"}] | ||
completion = self.gptj.chat_completion(messages) | ||
print(f"Completion: {completion}") | ||
|
||
@stub.local_entrypoint() | ||
def main(): | ||
model = GPT4All() | ||
for i in range(10): | ||
model.generate() | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters