mirror of
https://github.com/nomic-ai/gpt4all
synced 2024-11-02 09:40:42 +00:00
4462d2d755
* chore: boilerplate, refactor in future * chore: boilerplate * feat: can compile succesfully * document .gyp file * add src, test and fix gyp * progress on prompting and some helper methods * add destructor and basic prompting work, prepare download function * download function done * download function edits and adding documentation * fix bindings memory issue and add tests and specs * add more documentation and readme * add npmignore * Update README.md Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> * Update package.json - redundant scripts Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> --------- Signed-off-by: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> |
||
---|---|---|
.. | ||
spec | ||
src | ||
test | ||
.gitignore | ||
.npmignore | ||
binding.gyp | ||
index.cc | ||
package.json | ||
README.md | ||
stdcapture.cc | ||
stdcapture.h | ||
yarn.lock |
Javascript Bindings
The original GPT4All typescript bindings are now out of date.
- created by jacoobes and nomic ai :D, for all to use.
- will maintain this repository when possible, new feature requests will be handled through nomic
Build Instructions
- As of 05/21/2023, Tested on windows (MSVC) only. (somehow got it to work on MSVC 🤯)
- binding.gyp is compile config
Requirements
- git
- node.js >= 18.0.0
- yarn
- node-gyp
- all of its requirements.
Build
git clone https://github.com/nomic-ai/gpt4all.git
cd gpt4all-bindings/typescript
-
The below shell commands assume the current working directory is
typescript
. -
To Build and Rebuild:
yarn
- llama.cpp git submodule for gpt4all can be possibly absent. If this is the case, make sure to run in llama.cpp parent directory
git submodule update --init --depth 1 --recursive`
Test
yarn test
Source Overview
src/
- Extra functions to help aid devex
- Typings for the native node addon
- the javascript interface
test/
- simple unit testings for some functions exported.
- more advanced ai testing is not handled
spec/
- Average look and feel of the api
- Should work assuming a model is installed locally in working directory
index.cc
- The bridge between nodejs and c. Where the bindings are.