File tree 9 files changed +16
-16
lines changed
9 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Rag \Chat ;
5
+ namespace App \Blog \Chat ;
6
6
7
7
use PhpLlm \LlmChain \ChainInterface ;
8
8
use PhpLlm \LlmChain \Model \Message \Message ;
11
11
use Symfony \Component \DependencyInjection \Attribute \Autowire ;
12
12
use Symfony \Component \HttpFoundation \RequestStack ;
13
13
14
- final class Rag
14
+ final class Blog
15
15
{
16
16
private const SESSION_KEY = 'rag-chat ' ;
17
17
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Command ;
5
+ namespace App \Blog \ Command ;
6
6
7
- use App \Rag \ Blog \Embedder ;
7
+ use App \Blog \Embedder ;
8
8
use Symfony \Component \Console \Attribute \AsCommand ;
9
9
use Symfony \Component \Console \Command \Command ;
10
10
use Symfony \Component \Console \Input \InputInterface ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Rag \ Blog ;
5
+ namespace App \Blog ;
6
6
7
7
use PhpLlm \LlmChain \Document \Metadata ;
8
8
use PhpLlm \LlmChain \Document \TextDocument ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Rag \ Blog ;
5
+ namespace App \Blog ;
6
6
7
7
use Symfony \Component \DomCrawler \Crawler ;
8
8
use Symfony \Component \Uid \Uuid ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Rag \ Blog ;
5
+ namespace App \Blog ;
6
6
7
7
use Symfony \Component \Uid \Uuid ;
8
8
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Rag \Twig ;
5
+ namespace App \Blog \Twig ;
6
6
7
- use App \Rag \Chat \Rag ;
7
+ use App \Blog \Chat \Blog ;
8
8
use PhpLlm \LlmChain \Model \Message \MessageBag ;
9
9
use Symfony \UX \LiveComponent \Attribute \AsLiveComponent ;
10
10
use Symfony \UX \LiveComponent \Attribute \LiveAction ;
11
11
use Symfony \UX \LiveComponent \Attribute \LiveArg ;
12
12
use Symfony \UX \LiveComponent \DefaultActionTrait ;
13
13
14
14
#[AsLiveComponent('rag ' )]
15
- final class RagComponent
15
+ final class BlogComponent
16
16
{
17
17
use DefaultActionTrait;
18
18
19
19
public function __construct (
20
- private readonly Rag $ chat ,
20
+ private readonly Blog $ chat ,
21
21
) {
22
22
}
23
23
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Tests \Rag \ Blog ;
5
+ namespace App \Tests \Blog ;
6
6
7
- use App \Rag \ Blog \Loader ;
8
- use App \Rag \ Blog \Post ;
7
+ use App \Blog \Loader ;
8
+ use App \Blog \Post ;
9
9
use PHPUnit \Framework \Attributes \CoversClass ;
10
10
use PHPUnit \Framework \Attributes \UsesClass ;
11
11
use PHPUnit \Framework \TestCase ;
Original file line number Diff line number Diff line change 2
2
3
3
declare (strict_types=1 );
4
4
5
- namespace App \Tests \Rag \ Blog ;
5
+ namespace App \Tests \Blog ;
6
6
7
- use App \Rag \ Blog \Post ;
7
+ use App \Blog \Post ;
8
8
use PHPUnit \Framework \Attributes \CoversClass ;
9
9
use PHPUnit \Framework \TestCase ;
10
10
use Symfony \Component \Uid \Uuid ;
File renamed without changes.
You can’t perform that action at this time.
0 commit comments