-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump knowledge tag to include keyword-based prefiltering (#174)
- Loading branch information
1 parent
a625028
commit a27a57a
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -149,7 +149,7 @@ const featuredTools: FeaturedTools = { | |
{ | ||
name: 'Knowledge', | ||
description: 'Provides the assistant with information based context.', | ||
url: 'github.com/gptscript-ai/[email protected].6-gateway', | ||
url: 'github.com/gptscript-ai/[email protected].7-gateway', | ||
tags: ['knowledge', 'rag'], | ||
icon: <GoBook className="text-5xl" />, | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -131,20 +131,20 @@ export default function Commands({ | |
if ( | ||
!tool || | ||
tool.tools?.includes( | ||
'github.com/gptscript-ai/[email protected].6-gateway' | ||
'github.com/gptscript-ai/[email protected].7-gateway' | ||
) | ||
) | ||
return; | ||
setTool((prev) => ({ | ||
...prev, | ||
tools: [ | ||
...(prev.tools || []), | ||
'github.com/gptscript-ai/[email protected].6-gateway', | ||
'github.com/gptscript-ai/[email protected].7-gateway', | ||
], | ||
})); | ||
socket?.emit( | ||
'addTool', | ||
'github.com/gptscript-ai/[email protected].6-gateway' | ||
'github.com/gptscript-ai/[email protected].7-gateway' | ||
); | ||
}) | ||
); | ||
|