Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,10 @@ jobs:
- name: Build SDK before tests
run: cd sdk && bun run build

- name: Prebuild CLI agents
if: matrix.package == 'cli'
run: cd cli && bun run prebuild:agents

- name: Run ${{ matrix.package }} tests
uses: nick-fields/retry@v3
with:
Expand Down Expand Up @@ -228,6 +232,10 @@ jobs:
- name: Build SDK before integration tests
run: cd sdk && bun run build

- name: Prebuild CLI agents
if: matrix.package == 'cli'
run: cd cli && bun run prebuild:agents

- name: Run ${{ matrix.package }} integration tests
uses: nick-fields/retry@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion evals/buffbench/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ async function main() {
// Use 'external:codex' for OpenAI Codex CLI
await runBuffBench({
evalDataPaths: [path.join(__dirname, 'eval-codebuff.json')],
agents: ['base-deep-evals'],
agents: ['base2-free'],
taskConcurrency: 5,
})

Expand Down
4 changes: 2 additions & 2 deletions web/src/app/api/v1/chat/completions/_post.ts
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@ export async function postChatCompletions(params: {
if (bodyStream) {
// Streaming request — route to SiliconFlow/CanopyWave/Fireworks for supported models
const useSiliconFlow = false // isSiliconFlowModel(typedBody.model)
const useCanopyWave = isCanopyWaveModel(typedBody.model)
const useFireworks = false // isFireworksModel(typedBody.model)
const useCanopyWave = false // isCanopyWaveModel(typedBody.model)
const useFireworks = isFireworksModel(typedBody.model)
const stream = useSiliconFlow
? await handleSiliconFlowStream({
body: typedBody,
Expand Down
Loading