diff --git a/app/components/KeyFeatures.tsx b/app/components/KeyFeatures.tsx index 28e21d7..0176aeb 100644 --- a/app/components/KeyFeatures.tsx +++ b/app/components/KeyFeatures.tsx @@ -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", ] diff --git a/app/components/Prerequisites.tsx b/app/components/Prerequisites.tsx index ada89f8..1261cd4 100644 --- a/app/components/Prerequisites.tsx +++ b/app/components/Prerequisites.tsx @@ -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 ( @@ -22,4 +22,3 @@ export default function Prerequisites() { ) } -