Skip to main content

Converse with your favorite Amazon Bedrock LLM from the command line.

Project description

Ask Amazon Bedrock

Converse with your favorite Amazon Bedrock large language model from the command line.

This tool is a wrapper around the low-level Amazon Bedrock APIs. Its main added value is that it locally persists AWS account and model configuration to enable quick and easy interaction.

Installation

⚠️ Requires Python >= 3.9

⚠️ Requires a working AWS CLI setup configured with a profile that allows Amazon Bedrock access. See CLI documentation for details.

pip install ask-bedrock

You can also build/run this project locally, see Building and Running Locally.

Usage

Activating models

Before you can use this command line tool, you need to request model access through the AWS Console in a region where Bedrock is available: Switch to the region where you want to run Bedrock, go to ”Model access“, click “Edit”, activate the models you wish to use, and then click “Save changes”.

Invocation

To start a conversation, simply enter the following command:

ask-bedrock converse

If you don't need a conversation, you can get a simple request-response using:

ask-bedrock prompt "What's up?"

Upon the first run, you will be led through a configuration flow. To learn more about configuration options, see the Configuration section below.

If you’re fully configured, the tool will show you a >>> prompt and you can start interacting with the configured model.

Multi-line prompts can be wrapped into <<< >>> blocks.

To end your interaction, hit Ctrl + D. Note that the conversation will be lost.

You can also use a single prompt with a simple request-response:

ask-bedrock prompt "complete this sentence: One small step for me"

MCP

Ask Amazon Bedrock supports the Model Context Protocol. You can register MCP servers through configuration, which auto-discovers resources and tools from an MCP server. The resources and tools are then available during invocation.

Pricing

Note that using Ask Amazon Bedrock incurs AWS fees. For more information, see Amazon Bedrock pricing. Consider using a dedicated AWS account and AWS Budgets to control costs.

Configuration

Ask Amazon Bedrock stores your user configuration in $HOME/.config/ask-bedrock/config.yaml. This file may contain several sets of configuration (contexts). For instance, you can use contexts to switch between different models. Use the --context parameter to select the context you'd like to use. The default context is default.

If no configuration is found for a selected context, a new one is created. If you want to change an existing config, use

ask-bedrock configure --context mycontext

You can also create or edit the configuration file yourself in $HOME/.config/ask-bedrock/config.yaml. Note that MCP configuration is verbose, but mostly auto-discovered during ask-bedrock configure:

contexts:
  default:
    region: ""                  # an AWS region where you have activated Bedrock
    aws_profile: ""             # a profile from your ~/.aws/config file
    model_id: ""                # a Bedrock model, e.g. "ai21.j2-ultra-v1"
    inference_config: "{}"      # a JSON object with inference configuration
    mcp_servers:
    - command: npx
      args:
      - -y
      - '@modelcontextprotocol/server-filesystem'
      - /Users/uhinze/Downloads
      env: {}
      name: file
      resources: []
      tools:
      - description: Read the complete contents of a file from the file system. Handles various text encodings and provides detailed error messages if the file cannot be read. Use this tool when you need to examine the contents of a single file. Only works within allowed directories.
        inputSchema:
          $schema: http://json-schema.org/draft-07/schema#
        additionalProperties: false
        properties:
          path:
            type: string
        required:
        - path
        type: object
        name: read_file
        server_name: file
      - ...more tools

Inference Configuration

The inference_config is passed directly to the Amazon Bedrock Runtime converse_stream API. This configuration controls the behavior of model generation, including parameters like temperature and token limits.

Common parameters include:

  • temperature (float): Controls randomness in response generation. Lower values make responses more deterministic.
  • topP (float): Controls diversity of responses by considering tokens with top cumulative probability.
  • maxTokens (integer): Maximum number of tokens to generate in the response.
  • stopSequences (array): Sequences where the model should stop generating.

Example configurations:

{
  "temperature": 0.7,
  "topP": 0.9,
  "maxTokens": 3000
}
{
  "temperature": 0.5,
  "maxTokens": 500,
  "stopSequences": ["\n\n"]
}

For more details, see the Amazon Bedrock Runtime InferenceConfiguration API Reference.

Building and Running Locally

pip install build
python -m build
pip install -e .
ask_bedrock converse

Troubleshooting

Q: The model responses are cut off mid-sentence.

A: Configure the model to allow for longer response by increasing the maxTokens value in the inference configuration (see above). For example: {"maxTokens": 3000}


Q: I'm getting an error that is not listed here.

A: Use the --debug option to find out more about the error. If you cannot solve it, create an issue.

Security

See CONTRIBUTING for more information.

License

This project is licensed under the Apache-2.0 License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ask_bedrock-0.3.1.tar.gz (17.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ask_bedrock-0.3.1-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file ask_bedrock-0.3.1.tar.gz.

File metadata

  • Download URL: ask_bedrock-0.3.1.tar.gz
  • Upload date:
  • Size: 17.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ask_bedrock-0.3.1.tar.gz
Algorithm Hash digest
SHA256 7f8d58db30bbc95bd231e48443e81473b169b2d61bab9afbe47d0be725a13d3c
MD5 69a8ef1f0194ee644124de33f6426255
BLAKE2b-256 5c8c430f63e6a2643f974fb96ce2ef3b63c04d29bf923f91b69d6b896c0acecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for ask_bedrock-0.3.1.tar.gz:

Publisher: publish.yaml on awslabs/ask-bedrock

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file ask_bedrock-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: ask_bedrock-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 15.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for ask_bedrock-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 72fa155efef4493a6f461decc49f8f3d6603e1a7ee85b0d60407000079627bbf
MD5 d3f9c29b7daf7fda1348d74ae35d4f76
BLAKE2b-256 6c0d4c70e2fbb2aa93a921ad427409addd5a26753cfee972435666a60c60ea3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for ask_bedrock-0.3.1-py3-none-any.whl:

Publisher: publish.yaml on awslabs/ask-bedrock

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page