Skip to content

Commit

Permalink
refactor: group chat functionalities
Browse files Browse the repository at this point in the history
  • Loading branch information
bernard-ng committed Nov 19, 2024
1 parent 2d98807 commit 1cf0ba5
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/Model/Chat/ChatInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

use Devscast\Lugha\Model\Chat\Completion\History;
use Devscast\Lugha\Model\Chat\Completion\Message;
use Devscast\Lugha\Model\Prompt\PromptTemplate;
use Devscast\Lugha\Model\Chat\Prompt\PromptTemplate;

/**
* Interface ChatInterface.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

declare(strict_types=1);

namespace Devscast\Lugha\Model\Parser;
namespace Devscast\Lugha\Model\Chat\Parser;

use League\CommonMark\Environment\Environment;
use League\CommonMark\Exception\CommonMarkException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

declare(strict_types=1);

namespace Devscast\Lugha\Model\Parser;
namespace Devscast\Lugha\Model\Chat\Parser;

/**
* Interface OutputParserInterface.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

declare(strict_types=1);

namespace Devscast\Lugha\Model\Prompt;
namespace Devscast\Lugha\Model\Chat\Prompt;

use Webmozart\Assert\Assert;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

declare(strict_types=1);

namespace Devscast\Lugha\Tests\Model\Parser;
namespace Devscast\Lugha\Tests\Model\Chat\Parser;

use Devscast\Lugha\Model\Parser\MarkdownOutputParser;
use Devscast\Lugha\Model\Chat\Parser\MarkdownOutputParser;
use PHPUnit\Framework\TestCase;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

declare(strict_types=1);

namespace Devscast\Lugha\Tests\Model\Prompt;
namespace Devscast\Lugha\Tests\Model\Chat\Prompt;

use Devscast\Lugha\Model\Prompt\PromptTemplate;
use Devscast\Lugha\Model\Chat\Prompt\PromptTemplate;
use PHPUnit\Framework\TestCase;

/**
Expand Down

0 comments on commit 1cf0ba5

Please sign in to comment.