Skip to content

Commit

Permalink
chore: bump knowledge tag to include keyword-based prefiltering (#174)
Browse files Browse the repository at this point in the history
  • Loading branch information
iwilltry42 authored Aug 16, 2024
1 parent a625028 commit a27a57a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion components/edit/configure/imports/toolCatalog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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" />,
},
Expand Down
6 changes: 3 additions & 3 deletions components/script/chatBar/commands.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
);
})
);
Expand Down

0 comments on commit a27a57a

Please sign in to comment.