Skip to content

Commit 9088a66

Browse files
committed
minor #405 [Agent] Add @author (OskarStark)
This PR was merged into the main branch. Discussion ---------- [Agent] Add ``@author`` | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Docs? | no | Issues | -- | License | MIT Commits ------- c780b16 [Agent] Add ``@author``
2 parents a071848 + c780b16 commit 9088a66

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

src/agent/src/Chat.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
use Symfony\AI\Platform\Message\UserMessage;
1919
use Symfony\AI\Platform\Result\TextResult;
2020

21+
/**
22+
* @author Christopher Hertel <[email protected]>
23+
*/
2124
final readonly class Chat implements ChatInterface
2225
{
2326
public function __construct(

src/agent/src/Chat/MessageStoreInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
use Symfony\AI\Platform\Message\MessageBag;
1515

16+
/**
17+
* @author Christopher Hertel <[email protected]>
18+
*/
1619
interface MessageStoreInterface
1720
{
1821
public function save(MessageBag $messages): void;

src/agent/src/ChatInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
use Symfony\AI\Platform\Message\MessageBag;
1717
use Symfony\AI\Platform\Message\UserMessage;
1818

19+
/**
20+
* @author Christopher Hertel <[email protected]>
21+
*/
1922
interface ChatInterface
2023
{
2124
public function initiate(MessageBag $messages): void;

0 commit comments

Comments
 (0)