-
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.
[#6]: Update project configuration and fix import paths
- Remove import_map.json and update imports to use direct npm: specifiers - Fix TypeScript compatibility issues with LangChain models - Update build and install scripts in deno.jsonc - Add compiler and formatting options to deno.jsonc - Update OpenAI model configuration to use maxTokens instead of maxCompletionTokens
- Loading branch information
1 parent
111d9fb
commit 07d06af
Showing
7 changed files
with
33 additions
and
217 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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,6 +1,6 @@ | ||
#!/usr/bin/env -S deno run --allow-net --allow-read --allow-write --allow-env --allow-run="git,vim,gh" --import-map=import_map.json | ||
|
||
import { join } from "path"; | ||
import { join } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import { parseFlags, displayHelp, displayAvailableModels } from "./cli/cli.ts"; | ||
import { | ||
getConfigDir, | ||
|
Oops, something went wrong.