@opentiny/next-remoter 0.2.1 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,13 +31,6 @@ export declare class CustomAgentModelProvider extends BaseModelProvider {
31
31
  useReActMode?: boolean;
32
32
  llm?: ProviderV2;
33
33
  }): void;
34
- /**
35
- * 创建MCP服务器配置
36
- * @param sessionId 会话ID,支持逗号分隔的多个ID
37
- * @param agentRoot 代理根路径
38
- * @returns MCP服务器配置对象,键为服务器名称,值为配置对象
39
- */
40
- private createMcpServers;
41
34
  /**
42
35
  * 处理文本流数据
43
36
  * @param part 流数据部分
@@ -92,7 +92,5 @@ export declare function usePlugin(agent: any, enabledTools: Ref<Record<string, b
92
92
  addState?: import('@opentiny/tiny-robot').PluginAddState | undefined;
93
93
  category?: string | undefined;
94
94
  } | null>;
95
- syncInstalledPluginsTools: () => void;
96
95
  searchPlugin: (query: string, item: PluginInfo) => boolean;
97
- initPluginSystem: (onToolDisconnected?: (pluginName: string) => void) => void;
98
96
  };