Skip to content

Commit fbff545

Browse files
committed
Turn on fireworks deployment
1 parent ee15d0d commit fbff545

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

agents/base2/base2.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,10 +381,10 @@ function buildImplementationStepPrompt({
381381
`You must spawn a ${isDefault ? 'code-reviewer' : 'code-reviewer-multi-prompt'} to review the changes after you have implemented the changes and in parallel with typechecking or testing.`,
382382
isFree &&
383383
`You must spawn a code-reviewer-lite to review the changes after you have implemented the changes and in parallel with typechecking or testing.`,
384-
`After completing the user request, summarize your changes in a sentence${isFast ? '' : ' or a few short bullet points'}.${isSonnet ? " Don't create any summary markdown files or example documentation files, unless asked by the user." : ''} Don't repeat yourself, especially if you have already concluded and summarized the changes in a previous step -- just end your turn.`,
384+
`After completing the user request, summarize your changes in a sentence${isFast ? '' : ' or a few short bullet points'}.${isSonnet ? " Don't create any summary markdown files or example documentation files, unless asked by the user." : ''}.`,
385385
!isFast &&
386386
!noAskUser &&
387-
`At the end of your turn, use the suggest_followups tool to suggest around 3 next steps the user might want to take.`,
387+
`At the end of your turn, you must use the suggest_followups tool to suggest around 3 next steps the user might want to take even if the user just asks a question.`,
388388
).join('\n')
389389
}
390390

scripts/test-fireworks-long.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
export { }
1414

1515
const FIREWORKS_BASE_URL = 'https://api.fireworks.ai/inference/v1'
16-
// const FIREWORKS_MODEL = 'accounts/james-65d217/deployments/lnfid5h9'
17-
const FIREWORKS_MODEL = 'accounts/fireworks/models/minimax-m2p5'
16+
const FIREWORKS_MODEL = 'accounts/james-65d217/deployments/lnfid5h9'
17+
// const FIREWORKS_MODEL = 'accounts/fireworks/models/minimax-m2p5'
1818

1919
// Pricing constants — https://fireworks.ai/pricing
2020
const INPUT_COST_PER_TOKEN = 0.30 / 1_000_000

web/src/llm-api/fireworks.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export function isDeploymentHours(now: Date = new Date()): boolean {
4949
}),
5050
10,
5151
)
52-
return etHour >= 10 && etHour < 20
52+
return true // etHour >= 10 && etHour < 20
5353
}
5454

5555
/**

0 commit comments

Comments
 (0)