Skip to content

Commit

Permalink
added internal attribute to plugins, optional and defaults to true
Browse files Browse the repository at this point in the history
  • Loading branch information
minhanhld committed Feb 13, 2025
1 parent f477444 commit c8a28ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions data/plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -573,6 +573,7 @@ const wikipediaPlugin: Plugin = {
description:
"Search and retrieve information from Wikipedia, including articles, summaries, and related content, as part of LangChain tools.",
image: "/logos/wikipedia.png",
internal: false,
actions: [],
};

Expand Down
1 change: 1 addition & 0 deletions src/app/plugins/utils/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export interface Plugin {
name: string;
description: string;
image: string;
internal?: boolean;
actions: Action[];
}

Expand Down

0 comments on commit c8a28ad

Please sign in to comment.