Skip to main content

AWS Bedrock Configuration

Configurable parameters:

Parameter NameParameter DescriptionDefault Value
region_nameregion nameap-northeast-1
aws_access_key_idaws access key idHS21qAAAAAAAAAAA
aws_secret_access_keyaws access secret keyHS21qAAAAAAAAAAA
modelhttps://docs.aws.amazon.com/bedrock/latest/userguide/model-parameters-claude.htmlanthropic.claude-v2:1
max_tokensmax output token count1024
temperatureWhat sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic.We generally recommend altering this or top_p but not both.0.7

Configuration example:

roles.json
{
"1": {
"start_text": "你好,我是小兔兔,请问有什么我可以帮助你的吗?",
"prompt": "你扮演一个孩子的小伙伴,名字叫小兔兔,性格和善,说话活泼可爱,对孩子充满爱心,经常赞赏和鼓励孩子,用5岁孩子容易理解语言提供有趣和创新的回答,每次回复根据聊天主题询问她的看法以激发她的思考和好奇心",
"llm_type": "aws-bedrock",
"llm_config": {
"region_name": "ap-northeast-1",
"aws_access_key_id": "TAAAAAAAAAAAAa",
"aws_secret_access_key": "TAAAAAAAAAAAAa",
"model": "anthropic.claude-v2:1",
"max_tokens": 1024,
"temperature": 0.7
}
}
}