fix/macm1ts (#1746)

* make runtime library backend universal searchable

* corepack enable

* fix

* pass tests

* simpler

* add more jsdoc

* fix testS

* fix up circle ci

* bump version

* remove false positive warning

* add disclaimer

* update readme

* revert

* update ts docs

---------

Co-authored-by: Matthew Nguyen <matthewpnguyen@Matthews-MacBook-Pro-7.local>
This commit is contained in:
Jacob Nguyen
2023-12-15 12:44:39 -06:00
committed by GitHub
parent 3acbef14b7
commit a1f27072c2
10 changed files with 166 additions and 653 deletions

View File

@@ -2,7 +2,11 @@
const fs = require('fs');
const newPath = '../python/docs/gpt4all_typescript.md';
const filepath = 'README.md';
const data = fs.readFileSync(filepath);
fs.writeFileSync(newPath, data);
const newPath = '../python/docs/gpt4all_nodejs.md';
const filepath = './README.md';
const intro = fs.readFileSync(filepath);
fs.writeFileSync(
newPath, intro
);