Skip to content

Commit 427627a

Browse files
author
Theodore Li
committed
Fix lint
1 parent 0836131 commit 427627a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

apps/sim/providers/mistral/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,8 @@ export const mistralProvider: ProviderConfig = {
367367
})
368368

369369
let resultContent: any
370-
if (result.success && result.output) {
371-
toolResults.push(result.output)
370+
if (result.success && result.output) {
371+
toolResults.push(result.output)
372372
resultContent = result.output
373373
} else {
374374
resultContent = {

apps/sim/providers/ollama/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -377,8 +377,8 @@ export const ollamaProvider: ProviderConfig = {
377377
})
378378

379379
let resultContent: any
380-
if (result.success && result.output) {
381-
toolResults.push(result.output)
380+
if (result.success && result.output) {
381+
toolResults.push(result.output)
382382
resultContent = result.output
383383
} else {
384384
resultContent = {

apps/sim/providers/vllm/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,8 @@ export const vllmProvider: ProviderConfig = {
429429
})
430430

431431
let resultContent: any
432-
if (result.success && result.output) {
433-
toolResults.push(result.output)
432+
if (result.success && result.output) {
433+
toolResults.push(result.output)
434434
resultContent = result.output
435435
} else {
436436
resultContent = {

0 commit comments

Comments
 (0)