Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dgieselaar committed Sep 17, 2024
1 parent 9178f90 commit 5d293d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -850,6 +850,7 @@ describe('Observability AI Assistant client', () => {
},
},
],
useSimulatedFunctionCalling: false,
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ export class ObservabilityAIAssistantClient {
complete = ({
functionClient,
connectorId,
simulateFunctionCalling,
simulateFunctionCalling = false,
instructions: adHocInstructions = [],
messages: initialMessages,
signal,
Expand Down Expand Up @@ -299,7 +299,7 @@ export class ObservabilityAIAssistantClient {
disableFunctions,
tracer: completeTracer,
connectorId,
useSimulatedFunctionCalling: simulateFunctionCalling !== false,
useSimulatedFunctionCalling: simulateFunctionCalling === true,
})
);
}),
Expand Down

0 comments on commit 5d293d3

Please sign in to comment.