Skip to content

Commit

Permalink
update features and prerequisites to reflect new LLM provider option:
Browse files Browse the repository at this point in the history
AWS Bedrock
  • Loading branch information
ehammond committed Dec 20, 2024
1 parent 0f72eec commit 486bdb8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
7 changes: 4 additions & 3 deletions app/components/KeyFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ export default function KeyFeatures() {
"Seamless integration with existing shell prompt",
"abc (natural language) command is added to shell history",
"Generated command is added to shell history, if it is run",
"Direct communication with LLM API provider through user's API key",
"Supports new LLM providers with a plugin system and config file",
"LLM provider/model config can be selected on the command line",
"Direct communication with LLM APIs using your own credentials",
"Multiple LLM providers supported (including Anthropic Claude, AWS Bedrock)",
"Plugin system for easy addition of new LLM providers",
"Provider/model selection via command line and config file",
"Includes awareness of current shell and operating system",
"Evaluates and warns about potentially dangerous commands",
]
Expand Down
3 changes: 1 addition & 2 deletions app/components/Prerequisites.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export default function Prerequisites() {
"Linux or macOS",
"bash 4.4+, zsh 5.0+, or tcsh 6.0+",
"Python 3.8 or higher",
"An Anthropic API key for the Claude LLM model",
"An Anthropic API key, or AWS credentials for AWS Bedrock",
]

return (
Expand All @@ -22,4 +22,3 @@ export default function Prerequisites() {
</section>
)
}

0 comments on commit 486bdb8

Please sign in to comment.