Skip to content

Commit

Permalink
update mergeWithLLM workflow to use Claude Sonnet 3.5 (#2689)
Browse files Browse the repository at this point in the history
  • Loading branch information
skwowet authored Nov 14, 2024
1 parent f14e18a commit 2f1abf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ export async function mergeMembersWithLLM(
args: IProcessMergeMemberSuggestionsWithLLM,
): Promise<void> {
const SUGGESTIONS_PER_RUN = 10
const REGION = 'us-west-2'
const MODEL_ID = 'anthropic.claude-3-opus-20240229-v1:0'
const REGION = 'us-east-1'
const MODEL_ID = 'anthropic.claude-3-5-sonnet-20240620-v1:0'
const MODEL_ARGS = {
max_tokens: 2000,
anthropic_version: 'bedrock-2023-05-31',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ export async function mergeOrganizationsWithLLM(
args: IProcessMergeOrganizationSuggestionsWithLLM,
): Promise<void> {
const SUGGESTIONS_PER_RUN = 5
const REGION = 'us-west-2'
const MODEL_ID = 'anthropic.claude-3-opus-20240229-v1:0'
const REGION = 'us-east-1'
const MODEL_ID = 'anthropic.claude-3-5-sonnet-20240620-v1:0'
const MODEL_ARGS = {
max_tokens: 2000,
anthropic_version: 'bedrock-2023-05-31',
Expand Down

0 comments on commit 2f1abf0

Please sign in to comment.