Cohere
Unstable API
0.8.0
@project-lakechain/bedrock-text-processors
The Cohere text processor allows you to leverage machine-learning models provided by Cohere on Amazon Bedrock within your pipelines. Using this construct, you can use prompt engineering techniques to transform text documents, including, text summarization, text translation, information extraction, and more!
📝 Text Generation
To start using Cohere models in your pipelines, you import the CohereTextProcessor
construct in your CDK stack, and specify the specific text model you want to use.
💁 The below example demonstrates how to use the Cohere text processor to summarize input documents uploaded to an S3 bucket.
🤖 Model Selection
You can select the specific Cohere model to use with this middleware using the .withModel
API.
💁 You can choose amongst the following models — see the Bedrock documentation for more information.
Model Name | Model identifier |
---|---|
COHERE_COMMAND_TEXT_V14 | cohere.command-text-v14 |
COHERE_COMMAND_LIGHT_TEXT_V14 | cohere.command-light-text-v14 |
COHERE_COMMAND_R | cohere.command-r-v1:0 |
COHERE_COMMAND_R_PLUS | cohere.command-r-plus-v1:0 |
🌐 Region Selection
You can specify the AWS region in which you want to invoke Amazon Bedrock using the .withRegion
API. This can be helpful if Amazon Bedrock is not yet available in your deployment region.
💁 By default, the middleware will use the current region in which it is deployed.
⚙️ Model Parameters
You can optionally forward specific parameters to the underlying LLM using the .withModelParameters
method. Below is a description of the supported parameters.
💁 See the Bedrock Inference Parameters for more information on the parameters supported by the different models.
Parameter | Description | Min | Max | Default |
---|---|---|---|---|
temperature | Controls the randomness of the generated text. | 0 | 1 | 0.3 |
maxTokens | The maximum number of tokens to generate. | 1 | 4096 | 4096 |
topP | The cumulative probability of the top tokens to sample from. | 0.01 | 0.99 | 0.75 |
🏗️ Architecture
This middleware is based on a Lambda compute running on an ARM64 architecture, and integrate with Amazon Bedrock to generate text based on the given prompt and input documents.
🏷️ Properties
Supported Inputs
Mime Type | Description |
---|---|
text/plain | UTF-8 text documents. |
text/markdown | Markdown documents. |
text/csv | CSV documents. |
text/html | HTML documents. |
application/x-subrip | SubRip subtitles. |
text/vtt | Web Video Text Tracks (WebVTT) subtitles. |
application/json | JSON documents. |
application/json+scheduler | Used by the Scheduler middleware. |
Supported Outputs
Mime Type | Description |
---|---|
text/plain | UTF-8 text documents. |
Supported Compute Types
Type | Description |
---|---|
CPU | This middleware only supports CPU compute. |