-
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.
Merge pull request #8 from mabry1985/feature/cli-utils
cli updates
- Loading branch information
Showing
25 changed files
with
584 additions
and
163 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@ai-citizens/utils": patch | ||
"@ai-citizens/ava": patch | ||
"@ai-citizens/llm": patch | ||
--- | ||
|
||
adds utils, additional model handling improvements |
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,8 +1,41 @@ | ||
dist/ | ||
node_modules/ | ||
.DS_Store | ||
.env | ||
.changeset/README.md | ||
.changeset/*.tmp.md | ||
oclif.manifest.json | ||
.pnpm-store/ | ||
.pnpm-store/ | ||
.npmrc | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
lerna-debug.log* | ||
|
||
# Dependency directory | ||
**/node_modules/** | ||
_node_modules | ||
.pnp.cjs | ||
*.local | ||
|
||
# Coverage directory used by tools like istanbul | ||
coverage | ||
|
||
# Editor directories and files | ||
.vscode/* | ||
!.vscode/extensions.json | ||
.idea | ||
.DS_Store | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? | ||
.tmp | ||
_docpress | ||
tsconfig.tsbuildinfo | ||
.env | ||
ava.env |
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,28 @@ | ||
{ | ||
"modelConfig": { | ||
"anthropic": [ | ||
"claude-3-5-sonnet-20240620", | ||
"claude-3-haiku-20240307", | ||
"claude-3-opus-20240229", | ||
"claude-3-sonnet-20240229" | ||
], | ||
"google": ["gemini-1.0-pro", "gemini-1.5-flash", "gemini-1.5-pro"], | ||
"groq": [ | ||
"gemma-7b-it", | ||
"gemma2-9b-it", | ||
"llama-3.1-8b-instant", | ||
"llama-3.1-70b-versatile", | ||
"mixtral-8x7b-32768" | ||
], | ||
"local": ["hermes-2-pro-llama-3-8b"], | ||
"ollama": ["llama3.1"], | ||
"openAI": [ | ||
"gpt-3.5-turbo", | ||
"gpt-4", | ||
"gpt-4-0125-preview", | ||
"gpt-4-turbo", | ||
"gpt-4o", | ||
"gpt-4o-mini" | ||
] | ||
} | ||
} |
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
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
Oops, something went wrong.