-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
98d4fb3
commit e0be710
Showing
7 changed files
with
393 additions
and
242 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 |
---|---|---|
@@ -1,62 +1,27 @@ | ||
.vscode | ||
node_modules/ | ||
dist/ | ||
dist-cjs/ | ||
lib/ | ||
.turbo | ||
.eslintcache | ||
.env | ||
yarn-error.log | ||
|
||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
langchain/docs/ | ||
|
||
.idea/ | ||
|
||
.DS_Store | ||
|
||
Chinook.db | ||
Chinook_Sqlite.sql | ||
|
||
.envrc | ||
*.swp | ||
*.swo | ||
|
||
.node-version | ||
|
||
## GENERATED create-entrypoints.js | ||
/client.cjs | ||
/client.js | ||
/client.d.ts | ||
/client.d.cts | ||
/run_trees.cjs | ||
/run_trees.js | ||
/run_trees.d.ts | ||
/run_trees.d.cts | ||
/traceable.cjs | ||
/traceable.js | ||
/traceable.d.ts | ||
/traceable.d.cts | ||
/evaluation.cjs | ||
/evaluation.js | ||
/evaluation.d.ts | ||
/evaluation.d.cts | ||
/schemas.cjs | ||
/schemas.js | ||
/schemas.d.ts | ||
/schemas.d.cts | ||
/wrappers.cjs | ||
/wrappers.js | ||
/wrappers.d.ts | ||
/wrappers.d.cts | ||
/index.cjs | ||
/index.js | ||
/index.d.ts | ||
/index.d.cts | ||
## END GENERATED create-entrypoints.js | ||
client.cjs | ||
client.js | ||
client.d.ts | ||
client.d.cts | ||
run_trees.cjs | ||
run_trees.js | ||
run_trees.d.ts | ||
run_trees.d.cts | ||
traceable.cjs | ||
traceable.js | ||
traceable.d.ts | ||
traceable.d.cts | ||
evaluation.cjs | ||
evaluation.js | ||
evaluation.d.ts | ||
evaluation.d.cts | ||
schemas.cjs | ||
schemas.js | ||
schemas.d.ts | ||
schemas.d.cts | ||
wrappers.cjs | ||
wrappers.js | ||
wrappers.d.ts | ||
wrappers.d.cts | ||
node_modules | ||
dist | ||
.yarn |
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,26 @@ | ||
import { resolve, dirname } from "node:path"; | ||
import { fileURLToPath } from "node:url"; | ||
|
||
/** | ||
* @param {string} relativePath | ||
* @returns {string} | ||
*/ | ||
function abs(relativePath) { | ||
return resolve(dirname(fileURLToPath(import.meta.url)), relativePath); | ||
} | ||
|
||
export const config = { | ||
internals: [/node\:/], | ||
entrypoints: { | ||
client: "client", | ||
run_trees: "run_trees", | ||
traceable: "traceable", | ||
evaluation: "evaluation/index", | ||
schemas: "schemas", | ||
wrappers: "wrappers", | ||
}, | ||
tsConfigPath: resolve("./tsconfig.json"), | ||
cjsSource: "./dist-cjs", | ||
cjsDestination: "./dist", | ||
abs, | ||
} |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.