We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d078d commit cff3dc9Copy full SHA for cff3dc9
tests/Feature/ProjectOrchestrateTest.php
@@ -31,13 +31,13 @@ public function test_tools(): void
31
$this->assertDatabaseCount('messages', 0);
32
$this->assertDatabaseCount('tasks', 0);
33
34
- LlmDriverFacade::shouldReceive('driver->setToolType->chat')
+ LlmDriverFacade::shouldReceive('driver->setSystemPrompt->setToolType->chat')
35
->once()
36
->andReturn(
37
CompletionResponse::from($response)
38
);
39
40
- LlmDriverFacade::shouldReceive('driver->chat')
+ LlmDriverFacade::shouldReceive('driver->setToolType->setSystemPrompt->chat')
41
42
43
0 commit comments