Skip to content

Commit

Permalink
Ok all QA done, the tool will work with Source to get page from url, …
Browse files Browse the repository at this point in the history
…more coming soon
  • Loading branch information
alnutile committed Aug 12, 2024
1 parent 2285582 commit 86dd777
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Modules/LlmDriver/app/Functions/GatherInfoTool.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class GatherInfoTool extends FunctionContract

protected string $name = 'gather_info_tool';

protected string $description = 'This will look at all documents using your prompt then return the results after once more using your prompt. This is great for say Find all events from my collection of data';
protected string $description = 'This will look at all documents using your prompt then return the results after once more using your prompt. This is great for say Find all events from my collection of data and build a list of Event Dates, Titles Grouped by Month';

protected string $response = '';

Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ChatController.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function chat(Chat $chat)
'filter' => ['nullable', 'integer'],
'persona' => ['nullable', 'integer'],
'date_range' => ['nullable', 'string'],
'reference_collection_id' => ['required_if:tool,gather_info_tool', 'integer'],
'reference_collection_id' => ['required_if:tool,reporting_tool'],
]);

try {
Expand Down

0 comments on commit 86dd777

Please sign in to comment.