Skip to content

Commit b95023e

Browse files
authored
chore: add authors (#328)
I hope i got it more or less right based on the git history - let me know if I mixed sth up
1 parent 79310a3 commit b95023e

File tree

224 files changed

+664
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

224 files changed

+664
-0
lines changed

src/Chain/Chain.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface;
1919
use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface;
2020

21+
/**
22+
* @author Christopher Hertel <[email protected]>
23+
*/
2124
final readonly class Chain implements ChainInterface
2225
{
2326
/**

src/Chain/ChainAwareInterface.php

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

55
namespace PhpLlm\LlmChain\Chain;
66

7+
/**
8+
* @author Christopher Hertel <[email protected]>
9+
*/
710
interface ChainAwareInterface
811
{
912
public function setChain(ChainInterface $chain): void;

src/Chain/ChainAwareTrait.php

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

55
namespace PhpLlm\LlmChain\Chain;
66

7+
/**
8+
* @author Christopher Hertel <[email protected]>
9+
*/
710
trait ChainAwareTrait
811
{
912
private ChainInterface $chain;

src/Chain/ChainInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
use PhpLlm\LlmChain\Platform\Message\MessageBagInterface;
88
use PhpLlm\LlmChain\Platform\Response\ResponseInterface;
99

10+
/**
11+
* @author Denis Zunke <[email protected]>
12+
*/
1013
interface ChainInterface
1114
{
1215
/**

src/Chain/Exception/ExceptionInterface.php

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

55
namespace PhpLlm\LlmChain\Chain\Exception;
66

7+
/**
8+
* @author Oskar Stark <[email protected]>
9+
*/
710
interface ExceptionInterface extends \Throwable
811
{
912
}

src/Chain/Exception/InvalidArgumentException.php

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

55
namespace PhpLlm\LlmChain\Chain\Exception;
66

7+
/**
8+
* @author Oskar Stark <[email protected]>
9+
*/
710
class InvalidArgumentException extends \InvalidArgumentException implements ExceptionInterface
811
{
912
}

src/Chain/Exception/LogicException.php

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

55
namespace PhpLlm\LlmChain\Chain\Exception;
66

7+
/**
8+
* @author Oskar Stark <[email protected]>
9+
*/
710
class LogicException extends \LogicException implements ExceptionInterface
811
{
912
}

src/Chain/Exception/MissingModelSupportException.php

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

55
namespace PhpLlm\LlmChain\Chain\Exception;
66

7+
/**
8+
* @author Christopher Hertel <[email protected]>
9+
*/
710
final class MissingModelSupportException extends RuntimeException
811
{
912
private function __construct(string $model, string $support)

src/Chain/Exception/RuntimeException.php

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

55
namespace PhpLlm\LlmChain\Chain\Exception;
66

7+
/**
8+
* @author Oskar Stark <[email protected]>
9+
*/
710
class RuntimeException extends \RuntimeException implements ExceptionInterface
811
{
912
}

src/Chain/Input.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
use PhpLlm\LlmChain\Platform\Message\MessageBagInterface;
88
use PhpLlm\LlmChain\Platform\Model;
99

10+
/**
11+
* @author Christopher Hertel <[email protected]>
12+
*/
1013
final class Input
1114
{
1215
/**

0 commit comments

Comments
 (0)