migrate the search button to plugins discovery

This commit is contained in:
heweikang
2024-08-20 19:44:22 +08:00
parent fcd55df969
commit 39d7d9f13a
2 changed files with 6 additions and 10 deletions

View File

@@ -1,3 +1,5 @@
import path from "path";
export const OWNER = "ChatGPTNextWeb";
export const REPO = "ChatGPT-Next-Web";
export const REPO_URL = `https://github.com/${OWNER}/${REPO}`;
@@ -476,4 +478,7 @@ export const internalAllowedWebDavEndpoints = [
];
export const DEFAULT_GA_ID = "G-89WN60ZK2E";
export const PLUGINS = [{ name: "Stable Diffusion", path: Path.Sd }];
export const PLUGINS = [
{ name: "Stable Diffusion", path: Path.Sd },
{ name: "Search Chat", path: Path.SearchChat },
];