You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: workbench/app/Providers/CortexServiceProvider.php
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -100,10 +100,10 @@ public function boot(): void
100
100
101
101
$storyWriter = newAgent(
102
102
id: 'story_writer',
103
-
prompt: 'You are a story writer. You only write short stories. Use the tools provided to help.',
104
-
llm: 'lmstudio/openai/gpt-oss-20b',
103
+
prompt: 'You are a story writer. You only write short stories. Call the `get_random_story_topic` tool to get a story topic and the `flesh_out_story_idea` tool to flesh out a story idea.',
104
+
llm: 'anthropic/claude-3-7-sonnet-20250219',
105
105
tools: [
106
-
// $storyTopicGenerator->asTool('get_random_story_topic', 'Generate a random story topic.'),
106
+
$storyTopicGenerator->asTool('get_random_story_topic', 'Generate a random story topic.'),
107
107
$storyIdeaGenerator->asTool('flesh_out_story_idea', 'Flesh out a story idea about a given topic.'),
0 commit comments