Skip to content

Commit

Permalink
fix past references to summary
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed May 11, 2024
1 parent c396f62 commit 17b0466
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Modules/LlmDriver/app/Functions/SummarizeCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function handle(
notify_ui($model->getChat(), 'Summary complete');

if (Feature::active('verification_prompt')) {
Log::info("[LaraChain] Verifying Summary Collection");
Log::info('[LaraChain] Verifying Summary Collection');
$this->verify($model, 'Can you summarize this collection of data for me.', $summary);
}

Expand Down
4 changes: 2 additions & 2 deletions app/Domains/Chat/UiStatusEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Domains\Chat;

enum UiStatusEnum : string
enum UiStatusEnum: string
{
case Complete = "complete";
case Complete = 'complete';
}
2 changes: 1 addition & 1 deletion app/Models/DocumentChunk.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,6 @@ public function getEmbeddingColumn(): string

public function getSummary(): string
{
return $this->summary;
return $this->content;
}
}

0 comments on commit 17b0466

Please sign in to comment.