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: src/Service/Agent/Intent/ActionIntent.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -64,8 +64,8 @@ public function getMessage(): string
64
64
PHP;
65
65
$hint.= '</code>' . "\n";
66
66
$hint.= "\n";
67
-
$hint.= 'Replace the line "// [INSERT_CODE_HERE]" with the code which you have generated.' . "\n";
68
-
$hint.= 'Replace the line "[NAME]" with a short and precise name as lower case and separated by hyphens which summarizes the business logic of the user message.' . "\n";
67
+
$hint.= 'Replace "// [INSERT_CODE_HERE]" with the code which you have generated.' . "\n";
68
+
$hint.= 'Replace "[NAME]" with a short and precise name as lower case and separated by hyphens which summarizes the business logic of the user message.' . "\n";
69
69
$hint.= "\n";
70
70
$hint.= 'If the business logic wants to interact with an external service i.e. a database or remote HTTP endpoint, then you can use the getConnection method at the connector argument to access those external services.' . "\n";
71
71
$hint.= 'You can get a list of all available connections through the "backend_connection_getAll" tool.' . "\n";
0 commit comments