modality-ai 0.1.4 → 0.1.5
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.
package/dist/types/index.d.ts
CHANGED
|
@@ -2,3 +2,4 @@ export { createAIChat, mergeToolCallsAndResults, OllamaProvider, } from "./util_
|
|
|
2
2
|
export { ModalityClient } from "./ModalityClient";
|
|
3
3
|
export { setupStdioToHttpTools, createStdioToHttpClient, } from "./setupStdioToHttpTools";
|
|
4
4
|
export type { ModalityClientInstance } from "./ModalityClient";
|
|
5
|
+
export type { StdioToHttpOptions } from "./setupStdioToHttpTools";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type ModalityFastMCP, type AITools } from "modality-mcp-kit";
|
|
2
2
|
import { type ModalityClientInstance } from "./ModalityClient";
|
|
3
|
-
interface StdioToHttpOptions {
|
|
3
|
+
export interface StdioToHttpOptions {
|
|
4
4
|
command?: string;
|
|
5
5
|
args?: string[];
|
|
6
6
|
env?: Record<string, string>;
|
|
@@ -13,4 +13,3 @@ export declare const createStdioToHttpClient: (options?: StdioToHttpOptions) =>
|
|
|
13
13
|
* Dynamically loads all tools from chrome-devtools-mcp@latest and exposes them as AITools
|
|
14
14
|
*/
|
|
15
15
|
export declare const setupStdioToHttpTools: (mcpServer?: ModalityFastMCP, options?: StdioToHttpOptions) => Promise<AITools>;
|
|
16
|
-
export {};
|
package/package.json
CHANGED