skybridge 0.0.0-dev.ff49e24 → 0.0.0

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.
Files changed (169) hide show
  1. package/LICENSE +21 -674
  2. package/dist/src/server/devtoolsStaticServer.d.ts +15 -0
  3. package/dist/src/server/devtoolsStaticServer.js +43 -0
  4. package/dist/src/server/devtoolsStaticServer.js.map +1 -0
  5. package/dist/src/server/index.d.ts +3 -0
  6. package/dist/src/server/index.js +1 -0
  7. package/dist/src/server/index.js.map +1 -1
  8. package/dist/src/server/inferUtilityTypes.d.ts +64 -0
  9. package/dist/src/server/inferUtilityTypes.js +2 -0
  10. package/dist/src/server/inferUtilityTypes.js.map +1 -0
  11. package/dist/src/server/server.d.ts +59 -9
  12. package/dist/src/server/server.js +26 -9
  13. package/dist/src/server/server.js.map +1 -1
  14. package/dist/src/server/templateHelper.d.ts +9 -8
  15. package/dist/src/server/templateHelper.js +5 -12
  16. package/dist/src/server/templateHelper.js.map +1 -1
  17. package/dist/src/server/templates/development.hbs +2 -1
  18. package/dist/src/server/templates/production.hbs +3 -2
  19. package/dist/src/server/widgetsDevServer.js +3 -3
  20. package/dist/src/server/widgetsDevServer.js.map +1 -1
  21. package/dist/src/test/utils.d.ts +97 -1
  22. package/dist/src/test/utils.js +182 -3
  23. package/dist/src/test/utils.js.map +1 -1
  24. package/dist/src/test/widget.test.js +45 -19
  25. package/dist/src/test/widget.test.js.map +1 -1
  26. package/dist/src/web/create-store.d.ts +3 -0
  27. package/dist/src/web/create-store.js +25 -0
  28. package/dist/src/web/create-store.js.map +1 -0
  29. package/dist/src/web/create-store.test.js +70 -0
  30. package/dist/src/web/create-store.test.js.map +1 -0
  31. package/dist/src/web/data-llm.d.ts +14 -0
  32. package/dist/src/web/data-llm.js +68 -0
  33. package/dist/src/web/data-llm.js.map +1 -0
  34. package/dist/src/web/data-llm.test.js +76 -0
  35. package/dist/src/web/data-llm.test.js.map +1 -0
  36. package/dist/src/web/generate-helpers.d.ts +115 -0
  37. package/dist/src/web/generate-helpers.js +111 -0
  38. package/dist/src/web/generate-helpers.js.map +1 -0
  39. package/dist/src/web/generate-helpers.test-d.d.ts +1 -0
  40. package/dist/src/web/generate-helpers.test-d.js +180 -0
  41. package/dist/src/web/generate-helpers.test-d.js.map +1 -0
  42. package/dist/src/web/generate-helpers.test.d.ts +1 -0
  43. package/dist/src/web/generate-helpers.test.js +17 -0
  44. package/dist/src/web/generate-helpers.test.js.map +1 -0
  45. package/dist/src/web/helpers/state.d.ts +7 -0
  46. package/dist/src/web/helpers/state.js +40 -0
  47. package/dist/src/web/helpers/state.js.map +1 -0
  48. package/dist/src/web/helpers/state.test.d.ts +1 -0
  49. package/dist/src/web/helpers/state.test.js +53 -0
  50. package/dist/src/web/helpers/state.test.js.map +1 -0
  51. package/dist/src/web/hooks/index.d.ts +12 -0
  52. package/dist/src/web/hooks/index.js +13 -0
  53. package/dist/src/web/hooks/index.js.map +1 -0
  54. package/dist/src/web/hooks/use-call-tool.d.ts +100 -0
  55. package/dist/src/web/{use-call-tool.js → hooks/use-call-tool.js} +26 -10
  56. package/dist/src/web/hooks/use-call-tool.js.map +1 -0
  57. package/dist/src/web/hooks/use-call-tool.test-d.d.ts +1 -0
  58. package/dist/src/web/hooks/use-call-tool.test-d.js +104 -0
  59. package/dist/src/web/hooks/use-call-tool.test-d.js.map +1 -0
  60. package/dist/src/web/hooks/use-call-tool.test.d.ts +1 -0
  61. package/dist/src/web/hooks/use-call-tool.test.js +165 -0
  62. package/dist/src/web/hooks/use-call-tool.test.js.map +1 -0
  63. package/dist/src/web/hooks/use-display-mode.d.ts +4 -0
  64. package/dist/src/web/hooks/use-display-mode.js +7 -0
  65. package/dist/src/web/hooks/use-display-mode.js.map +1 -0
  66. package/dist/src/web/hooks/use-display-mode.test.d.ts +1 -0
  67. package/dist/src/web/hooks/use-display-mode.test.js +40 -0
  68. package/dist/src/web/hooks/use-display-mode.test.js.map +1 -0
  69. package/dist/src/web/hooks/use-files.d.ts +10 -0
  70. package/dist/src/web/hooks/use-files.js +7 -0
  71. package/dist/src/web/hooks/use-files.js.map +1 -0
  72. package/dist/src/web/hooks/use-files.test.d.ts +1 -0
  73. package/dist/src/web/hooks/use-files.test.js +29 -0
  74. package/dist/src/web/hooks/use-files.test.js.map +1 -0
  75. package/dist/src/web/hooks/use-locale.d.ts +1 -0
  76. package/dist/src/web/hooks/use-locale.js +5 -0
  77. package/dist/src/web/hooks/use-locale.js.map +1 -0
  78. package/dist/src/web/hooks/use-locale.test.d.ts +1 -0
  79. package/dist/src/web/hooks/use-locale.test.js +21 -0
  80. package/dist/src/web/hooks/use-locale.test.js.map +1 -0
  81. package/dist/src/web/hooks/use-open-external.d.ts +1 -0
  82. package/dist/src/web/hooks/use-open-external.js +6 -0
  83. package/dist/src/web/hooks/use-open-external.js.map +1 -0
  84. package/dist/src/web/hooks/use-open-external.test.d.ts +1 -0
  85. package/dist/src/web/hooks/use-open-external.test.js +24 -0
  86. package/dist/src/web/hooks/use-open-external.test.js.map +1 -0
  87. package/dist/src/web/hooks/use-openai-global.d.ts +2 -0
  88. package/dist/src/web/{use-openai-global.js → hooks/use-openai-global.js} +7 -3
  89. package/dist/src/web/hooks/use-openai-global.js.map +1 -0
  90. package/dist/src/web/hooks/use-request-modal.d.ts +6 -0
  91. package/dist/src/web/hooks/use-request-modal.js +9 -0
  92. package/dist/src/web/hooks/use-request-modal.js.map +1 -0
  93. package/dist/src/web/hooks/use-request-modal.test.d.ts +1 -0
  94. package/dist/src/web/hooks/use-request-modal.test.js +24 -0
  95. package/dist/src/web/hooks/use-request-modal.test.js.map +1 -0
  96. package/dist/src/web/hooks/use-send-follow-up-message.d.ts +1 -0
  97. package/dist/src/web/hooks/use-send-follow-up-message.js +11 -0
  98. package/dist/src/web/hooks/use-send-follow-up-message.js.map +1 -0
  99. package/dist/src/web/hooks/use-theme.d.ts +1 -0
  100. package/dist/src/web/hooks/use-theme.js +5 -0
  101. package/dist/src/web/hooks/use-theme.js.map +1 -0
  102. package/dist/src/web/hooks/use-theme.test.d.ts +1 -0
  103. package/dist/src/web/hooks/use-theme.test.js +26 -0
  104. package/dist/src/web/hooks/use-theme.test.js.map +1 -0
  105. package/dist/src/web/hooks/use-tool-info.d.ts +25 -0
  106. package/dist/src/web/hooks/use-tool-info.js +20 -0
  107. package/dist/src/web/hooks/use-tool-info.js.map +1 -0
  108. package/dist/src/web/hooks/use-tool-info.test-d.d.ts +1 -0
  109. package/dist/src/web/hooks/use-tool-info.test-d.js +73 -0
  110. package/dist/src/web/hooks/use-tool-info.test-d.js.map +1 -0
  111. package/dist/src/web/hooks/use-tool-info.test.d.ts +1 -0
  112. package/dist/src/web/hooks/use-tool-info.test.js +59 -0
  113. package/dist/src/web/hooks/use-tool-info.test.js.map +1 -0
  114. package/dist/src/web/hooks/use-user-agent.d.ts +1 -0
  115. package/dist/src/web/hooks/use-user-agent.js +5 -0
  116. package/dist/src/web/hooks/use-user-agent.js.map +1 -0
  117. package/dist/src/web/hooks/use-user-agent.test.d.ts +1 -0
  118. package/dist/src/web/hooks/use-user-agent.test.js +31 -0
  119. package/dist/src/web/hooks/use-user-agent.test.js.map +1 -0
  120. package/dist/src/web/hooks/use-widget-state.d.ts +4 -0
  121. package/dist/src/web/hooks/use-widget-state.js +32 -0
  122. package/dist/src/web/hooks/use-widget-state.js.map +1 -0
  123. package/dist/src/web/hooks/use-widget-state.test.d.ts +1 -0
  124. package/dist/src/web/hooks/use-widget-state.test.js +60 -0
  125. package/dist/src/web/hooks/use-widget-state.test.js.map +1 -0
  126. package/dist/src/web/index.d.ts +6 -6
  127. package/dist/src/web/index.js +6 -6
  128. package/dist/src/web/index.js.map +1 -1
  129. package/dist/src/web/mount-widget.js +5 -0
  130. package/dist/src/web/mount-widget.js.map +1 -1
  131. package/dist/src/web/plugin/data-llm.test.d.ts +1 -0
  132. package/dist/src/web/plugin/data-llm.test.js +81 -0
  133. package/dist/src/web/plugin/data-llm.test.js.map +1 -0
  134. package/dist/src/web/{plugin.js → plugin/plugin.js} +7 -4
  135. package/dist/src/web/plugin/plugin.js.map +1 -0
  136. package/dist/src/web/plugin/transform-data-llm.d.ts +12 -0
  137. package/dist/src/web/plugin/transform-data-llm.js +93 -0
  138. package/dist/src/web/plugin/transform-data-llm.js.map +1 -0
  139. package/dist/src/web/plugin/transform-data-llm.test.d.ts +1 -0
  140. package/dist/src/web/plugin/transform-data-llm.test.js +81 -0
  141. package/dist/src/web/plugin/transform-data-llm.test.js.map +1 -0
  142. package/dist/src/web/proxy.d.ts +1 -0
  143. package/dist/src/web/proxy.js +48 -0
  144. package/dist/src/web/proxy.js.map +1 -0
  145. package/dist/src/web/types.d.ts +47 -17
  146. package/dist/src/web/types.js +1 -0
  147. package/dist/src/web/types.js.map +1 -1
  148. package/dist/vitest.config.js +0 -1
  149. package/dist/vitest.config.js.map +1 -1
  150. package/package.json +20 -14
  151. package/README.md +0 -198
  152. package/dist/src/test/setup.js +0 -9
  153. package/dist/src/test/setup.js.map +0 -1
  154. package/dist/src/web/plugin.js.map +0 -1
  155. package/dist/src/web/use-call-tool.d.ts +0 -54
  156. package/dist/src/web/use-call-tool.js.map +0 -1
  157. package/dist/src/web/use-call-tool.test.js +0 -66
  158. package/dist/src/web/use-call-tool.test.js.map +0 -1
  159. package/dist/src/web/use-openai-global.d.ts +0 -2
  160. package/dist/src/web/use-openai-global.js.map +0 -1
  161. package/dist/src/web/use-tool-output.d.ts +0 -3
  162. package/dist/src/web/use-tool-output.js +0 -5
  163. package/dist/src/web/use-tool-output.js.map +0 -1
  164. package/dist/src/web/use-tool-response-metadata.d.ts +0 -3
  165. package/dist/src/web/use-tool-response-metadata.js +0 -5
  166. package/dist/src/web/use-tool-response-metadata.js.map +0 -1
  167. /package/dist/src/{test/setup.d.ts → web/create-store.test.d.ts} +0 -0
  168. /package/dist/src/web/{use-call-tool.test.d.ts → data-llm.test.d.ts} +0 -0
  169. /package/dist/src/web/{plugin.d.ts → plugin/plugin.d.ts} +0 -0
package/README.md DELETED
@@ -1,198 +0,0 @@
1
- <div align="center">
2
-
3
- # Skybridge
4
-
5
- **Skybridge is the TypeScript framework for building ChatGPT apps**
6
-
7
- [![By Alpic](https://img.shields.io/badge/Made%20by%20Alpic-f6ffed?logo=alpic)](https://alpic.ai)
8
-
9
- ![NPM Downloads](https://img.shields.io/npm/dm/skybridge?color=e90060)
10
- ![NPM Version](https://img.shields.io/npm/v/skybridge?color=e90060)
11
- ![GitHub License](https://img.shields.io/github/license/alpic-ai/skybridge?color=e90060)
12
-
13
- </div>
14
-
15
- Skybridge comes with 2 packages:
16
-
17
- - `skybridge/server`: A drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development.
18
- - `skybridge/web`: A react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
19
-
20
- ## Quick start
21
-
22
- To get started in less than a minute, you can [create a new repository](https://github.com/new?template_name=apps-sdk-template&template_owner=alpic-ai) using our [ChatGPT SDK template](https://github.com/alpic-ai/apps-sdk-template). This template includes a basic setup for both the server and the widgets.
23
-
24
- ## Installation
25
-
26
- ```bash
27
- pnpm add skybridge
28
- ```
29
-
30
- ## Concepts
31
-
32
- ### Widgets
33
-
34
- > A widget is a UI component that turns structured tool results into a human-friendly UI. Those are built using React components. They are rendered inside an iframe inline with the conversation on ChatGPT.
35
-
36
- Each widget in your app must have a unique name. The name is used to bridge the tool invocation result with the widget React component.
37
-
38
- For example, in order to register a new widget named `pokemon` on your ChatGPT app. You should have the following file structure and file contents:
39
-
40
- _Project structure_
41
-
42
- ```
43
- server/
44
- └── src/
45
- └── index.ts // Register the widget with McpServer.widget()
46
- web/
47
- └── src/
48
- └── widgets/
49
- └── pokemon.tsx // Use the same widget name as the file name
50
- ```
51
-
52
- _server/src/index.ts_
53
-
54
- ```ts
55
- import { McpServer } from "skybridge/server";
56
-
57
- const server = new McpServer();
58
-
59
- server.widget(
60
- "pokemon"
61
- // Remaining arguments...
62
- );
63
- ```
64
-
65
- _web/src/widgets/pokemon.tsx_
66
-
67
- ```ts
68
- import { mountWidget } from "skybridge/web";
69
-
70
- const Pokemon: React.FunctionComponent = () => {
71
- // Your React component code goes here...
72
- };
73
-
74
- mountWidget(<Pokemon />);
75
- ```
76
-
77
- ## Packages
78
-
79
- ### skybridge/server
80
-
81
- The `skybridge/server` package is a drop-in replacement of the `@modelcontextprotocol/sdk` official `McpServer` class with extra features for widget development. If you're already using the `@modelcontextprotocol/sdk`, you can simply replace your `McpServer` import with `skybridge/server` and you're good to go.
82
-
83
- ### skybridge/web
84
-
85
- The `skybridge/web` package is a react library with hooks and components to build widgets on the underlying _OpenAI iFrame skybridge_ runtime.
86
-
87
- **Vite plugin**
88
-
89
- The `skybridge/web` package comes with a Vite plugin that allows you to build your widgets as regular Vite apps.
90
-
91
- ```ts
92
- import { defineConfig } from "vite";
93
- import { skybridge } from "skybridge/web";
94
-
95
- export default defineConfig({
96
- plugins: [skybridge()],
97
- });
98
- ```
99
-
100
- **Hooks**
101
-
102
- The `skybridge/web` package comes with a set of hooks to help you build your widgets :
103
-
104
- - `useOpenAiGlobal`: A generic hook to get any global data from the OpenAI iFrame skybridge runtime (in `window.openai`).
105
- - `useToolOutput`: A hook to get the initial tool `structuredContent` returned when rendering the widget for the first time. The data inside this hook is not updated when the tool is called again.
106
- - `useToolResponseMetadata`: A hook to get the initial tool `meta` returned when rendering the widget for the first time. The data inside this hook is not updated when the tool is called again.
107
- - `useCallTool`: A @tanstack/react-query inspired hook to send make additional tool calls inside a widget.
108
-
109
- _useOpenAiGlobal_
110
-
111
- ```ts
112
- import { useOpenAiGlobal } from "skybridge/web";
113
-
114
- const theme = useOpenAiGlobal("theme");
115
- ```
116
-
117
- _useToolOutput_
118
-
119
- ```ts
120
- import { useToolOutput } from "skybridge/web";
121
-
122
- const toolOutput = useToolOutput();
123
- ```
124
-
125
- _useToolResponseMetadata_
126
-
127
- ```ts
128
- import { useToolResponseMetadata } from "skybridge/web";
129
-
130
- const toolResponseMetadata = useToolResponseMetadata();
131
- ```
132
-
133
- _useCallTool_ in synchronous mode
134
-
135
- ```ts
136
- import { useCallTool } from "skybridge/web";
137
-
138
- export const TestTool: React.FunctionComponent = () => {
139
- const { callTool, isPending } = useCallTool("myToolName");
140
-
141
- return (
142
- <div>
143
- <button
144
- disabled={isPending}
145
- onClick={() => {
146
- callTool({ input: "test input" }, {
147
- onSuccess: (data) => {
148
- alert("Tool returned: " + data);
149
- },
150
- });
151
- >
152
- Call Tool inside a widget
153
- </button>
154
- </div>
155
- );
156
- };
157
- ```
158
-
159
- _useCallTool_ in asynchronous mode
160
-
161
- ```ts
162
- import { useCallTool } from "skybridge/web";
163
-
164
- export const TestTool: React.FunctionComponent = () => {
165
- const { callToolAsync, isPending } = useCallTool("myToolName");
166
-
167
- return (
168
- <div>
169
- <button
170
- disabled={isPending}
171
- onClick={async () => {
172
- const data = await callToolAsync({ input: "test input" });
173
- alert("Tool returned: " + data);
174
- }}
175
- >
176
- Call Tool inside a widget
177
- </button>
178
- </div>
179
- );
180
- };
181
- ```
182
-
183
- ## Migrate your existing MCP server to a ChatGPT app
184
-
185
- If you're already using the `@modelcontextprotocol/sdk` to build a MCP server, you can migrate to a ChatGPT app by following these steps:
186
-
187
- 1. Replace your `McpServer` import from `@modelcontextprotocol/sdk` with the same import from `skybridge/server`
188
- 2. Create a new vite project in a folder named `web` and install the `skybridge` package
189
- 3. Replace the `vite.config.ts` file with the following:
190
-
191
- ```ts
192
- import { defineConfig } from "vite";
193
- import { skybridge } from "skybridge/web";
194
-
195
- export default defineConfig({
196
- plugins: [skybridge()],
197
- });
198
- ```
@@ -1,9 +0,0 @@
1
- import { vi } from "vitest";
2
- // Mock console methods to avoid noise in tests
3
- global.console = {
4
- ...console,
5
- error: vi.fn(),
6
- warn: vi.fn(),
7
- log: vi.fn(),
8
- };
9
- //# sourceMappingURL=setup.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"setup.js","sourceRoot":"","sources":["../../../src/test/setup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAE5B,+CAA+C;AAC/C,MAAM,CAAC,OAAO,GAAG;IACf,GAAG,OAAO;IACV,KAAK,EAAE,EAAE,CAAC,EAAE,EAAE;IACd,IAAI,EAAE,EAAE,CAAC,EAAE,EAAE;IACb,GAAG,EAAE,EAAE,CAAC,EAAE,EAAE;CACb,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../src/web/plugin.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,SAAS;IACvB,OAAO;QACL,IAAI,EAAE,WAAW;QAEjB,KAAK,CAAC,MAAM,CAAC,MAAM;YACjB,4EAA4E;YAC5E,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC;YAC7C,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;YAE9C,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;YACjD,MAAM,cAAc,GAAG,OAAO,CAC5B,WAAW,EACX,oCAAoC,CACrC,CAAC;YAEF,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;gBACrC,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,EAAE,CAAC,CAAC,CAAC;gBAC3C,IAAI;aACL,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,KAAK,EAAE;oBACL,MAAM,EAAE,IAAI;oBACZ,YAAY,EAAE,KAAK;oBACnB,aAAa,EAAE;wBACb,KAAK;wBACL,MAAM,EAAE;4BACN,cAAc,EAAE,WAAW;4BAC3B,cAAc,EAAE,iBAAiB;yBAClC;qBACF;iBACF;aACF,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -1,54 +0,0 @@
1
- import type { CallToolArgs, CallToolResponse } from "./types.js";
2
- export declare const useCallTool: <ToolArgs extends CallToolArgs = null, ToolResponse extends CallToolResponse = CallToolResponse>(name: string) => {
3
- callTool: (toolArgs: ToolArgs, sideEffects?: {
4
- onSuccess?: (data: ToolResponse, toolArgs: ToolArgs) => void;
5
- onError?: (error: unknown, toolArgs: ToolArgs) => void;
6
- }) => void;
7
- callToolAsync: (toolArgs: ToolArgs) => Promise<ToolResponse>;
8
- status: "idle";
9
- isIdle: true;
10
- isPending: false;
11
- isSuccess: false;
12
- isError: false;
13
- data: undefined;
14
- error: undefined;
15
- } | {
16
- callTool: (toolArgs: ToolArgs, sideEffects?: {
17
- onSuccess?: (data: ToolResponse, toolArgs: ToolArgs) => void;
18
- onError?: (error: unknown, toolArgs: ToolArgs) => void;
19
- }) => void;
20
- callToolAsync: (toolArgs: ToolArgs) => Promise<ToolResponse>;
21
- status: "pending";
22
- isIdle: false;
23
- isPending: true;
24
- isSuccess: false;
25
- isError: false;
26
- data: undefined;
27
- error: undefined;
28
- } | {
29
- callTool: (toolArgs: ToolArgs, sideEffects?: {
30
- onSuccess?: (data: ToolResponse, toolArgs: ToolArgs) => void;
31
- onError?: (error: unknown, toolArgs: ToolArgs) => void;
32
- }) => void;
33
- callToolAsync: (toolArgs: ToolArgs) => Promise<ToolResponse>;
34
- status: "error";
35
- isIdle: false;
36
- isPending: false;
37
- isSuccess: false;
38
- isError: true;
39
- data: undefined;
40
- error: unknown;
41
- } | {
42
- callTool: (toolArgs: ToolArgs, sideEffects?: {
43
- onSuccess?: (data: ToolResponse, toolArgs: ToolArgs) => void;
44
- onError?: (error: unknown, toolArgs: ToolArgs) => void;
45
- }) => void;
46
- callToolAsync: (toolArgs: ToolArgs) => Promise<ToolResponse>;
47
- status: "success";
48
- isIdle: false;
49
- isPending: false;
50
- isSuccess: true;
51
- isError: false;
52
- data: ToolResponse;
53
- error: undefined;
54
- };
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-call-tool.js","sourceRoot":"","sources":["../../../src/web/use-call-tool.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAC;AA4BjC,MAAM,CAAC,MAAM,WAAW,GAAG,CAIzB,IAAY,EACZ,EAAE;IACF,MAAM,CAAC,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE,gBAAgB,CAAC,GAAG,QAAQ,CAK1D,EAAE,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;IAEzD,MAAM,aAAa,GAAG,KAAK,EAAE,QAAkB,EAAE,EAAE;QACjD,gBAAgB,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;QAC3E,IAAI,CAAC;YACH,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,CACvC,IAAI,EACJ,QAAQ,CACT,CAAC;YACF,gBAAgB,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,IAAI,EAAE,KAAK,EAAE,SAAS,EAAE,CAAC,CAAC;YAEhE,OAAO,IAAI,CAAC;QACd,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,gBAAgB,CAAC,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,KAAK,EAAE,CAAC,CAAC;YAC9D,MAAM,KAAK,CAAC;QACd,CAAC;IACH,CAAC,CAAC;IAEF,MAAM,QAAQ,GAAG,CACf,QAAkB,EAClB,WAGC,EACD,EAAE;QACF,aAAa,CAAC,QAAQ,CAAC;aACpB,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;YACb,IAAI,WAAW,EAAE,SAAS,EAAE,CAAC;gBAC3B,WAAW,CAAC,SAAS,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;YACxC,CAAC;QACH,CAAC,CAAC;aACD,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;YACf,IAAI,WAAW,EAAE,OAAO,EAAE,CAAC;gBACzB,WAAW,CAAC,OAAO,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;YACvC,CAAC;QACH,CAAC,CAAC,CAAC;IACP,CAAC,CAAC;IAEF,MAAM,aAAa,GAAG;QACpB,MAAM;QACN,IAAI;QACJ,KAAK;QACL,MAAM,EAAE,MAAM,KAAK,MAAM;QACzB,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,SAAS,EAAE,MAAM,KAAK,SAAS;QAC/B,OAAO,EAAE,MAAM,KAAK,OAAO;KACG,CAAC;IAEjC,OAAO;QACL,GAAG,aAAa;QAChB,QAAQ;QACR,aAAa;KACd,CAAC;AACJ,CAAC,CAAC"}
@@ -1,66 +0,0 @@
1
- import { useCallTool } from "./use-call-tool.js";
2
- import { describe, it, expect, vi, beforeEach, afterEach, } from "vitest";
3
- import { renderHook, act, waitFor } from "@testing-library/react";
4
- describe("useCallTool - onSuccess callback", () => {
5
- let OpenaiMock;
6
- beforeEach(() => {
7
- OpenaiMock = {
8
- callTool: vi.fn(),
9
- };
10
- vi.stubGlobal("openai", OpenaiMock);
11
- });
12
- afterEach(() => {
13
- vi.unstubAllGlobals();
14
- vi.resetAllMocks();
15
- });
16
- const toolName = "test-tool";
17
- const args = { input: "test input" };
18
- const data = {
19
- content: [{ type: "text", text: "test result" }],
20
- structuredContent: { result: "test" },
21
- isError: false,
22
- result: "test result",
23
- meta: {},
24
- };
25
- const error = new Error("test error");
26
- it("should call window.openai.callTool with correct arguments", async () => {
27
- const { result } = renderHook(() => useCallTool(toolName));
28
- act(() => {
29
- result.current.callTool(args);
30
- });
31
- expect(OpenaiMock.callTool).toHaveBeenCalledWith(toolName, args);
32
- });
33
- it("should call onSuccess callback with correct data and toolArgs on successful execution", async () => {
34
- const onSuccess = vi.fn();
35
- const onError = vi.fn();
36
- OpenaiMock.callTool.mockResolvedValueOnce(data);
37
- const { result } = renderHook(() => useCallTool(toolName));
38
- act(() => {
39
- result.current.callTool(args, {
40
- onSuccess,
41
- onError,
42
- });
43
- });
44
- await waitFor(() => {
45
- expect(onSuccess).toHaveBeenCalledWith(data, args);
46
- expect(onError).not.toHaveBeenCalled();
47
- });
48
- });
49
- it("should call onError callback with error and toolArgs on failed execution", async () => {
50
- const onSuccess = vi.fn();
51
- const onError = vi.fn();
52
- OpenaiMock.callTool.mockRejectedValueOnce(error);
53
- const { result } = renderHook(() => useCallTool(toolName));
54
- act(() => {
55
- result.current.callTool(args, {
56
- onSuccess,
57
- onError,
58
- });
59
- });
60
- await waitFor(() => {
61
- expect(onSuccess).not.toHaveBeenCalled();
62
- expect(onError).toHaveBeenCalledWith(error, args);
63
- });
64
- });
65
- });
66
- //# sourceMappingURL=use-call-tool.test.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-call-tool.test.js","sourceRoot":"","sources":["../../../src/web/use-call-tool.test.ts"],"names":[],"mappings":"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"}
@@ -1,2 +0,0 @@
1
- import { type OpenAiGlobals } from "./types.js";
2
- export declare function useOpenAiGlobal<K extends keyof OpenAiGlobals>(key: K): OpenAiGlobals[K] | undefined;
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-openai-global.js","sourceRoot":"","sources":["../../../src/web/use-openai-global.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,EAAE,sBAAsB,EAAE,eAAe,EAAsB,MAAM,YAAY,CAAC;AAEzF,MAAM,UAAU,eAAe,CAAgC,GAAM;IACnE,OAAO,oBAAoB,CACzB,CAAC,QAAQ,EAAE,EAAE;QACX,MAAM,eAAe,GAAG,CAAC,KAAsB,EAAE,EAAE;YACjD,MAAM,KAAK,GAAG,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;YACxC,IAAI,KAAK,KAAK,SAAS,EAAE,CAAC;gBACxB,OAAO;YACT,CAAC;YAED,OAAO,CAAC,GAAG,CAAC,KAAK,CAAC,MAAM,CAAC,OAAO,EAAE,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC;YACvD,QAAQ,EAAE,CAAC;QACb,CAAC,CAAC;QAEF,MAAM,CAAC,gBAAgB,CAAC,sBAAsB,EAAE,eAAe,EAAE;YAC/D,OAAO,EAAE,IAAI;SACd,CAAC,CAAC;QAEH,OAAO,GAAG,EAAE;YACV,MAAM,CAAC,mBAAmB,CAAC,sBAAsB,EAAE,eAAe,CAAC,CAAC;QACtE,CAAC,CAAC;IACJ,CAAC,EACD,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAC3B,CAAC;AACJ,CAAC"}
@@ -1,3 +0,0 @@
1
- export declare function useToolOutput(): {
2
- [x: string]: unknown;
3
- } | null | undefined;
@@ -1,5 +0,0 @@
1
- import { useOpenAiGlobal } from "./use-openai-global.js";
2
- export function useToolOutput() {
3
- return useOpenAiGlobal("toolOutput");
4
- }
5
- //# sourceMappingURL=use-tool-output.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-tool-output.js","sourceRoot":"","sources":["../../../src/web/use-tool-output.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,MAAM,UAAU,aAAa;IAC3B,OAAO,eAAe,CAAC,YAAY,CAAC,CAAC;AACvC,CAAC"}
@@ -1,3 +0,0 @@
1
- export declare function useToolResponseMetadata(): {
2
- [x: string]: unknown;
3
- } | null | undefined;
@@ -1,5 +0,0 @@
1
- import { useOpenAiGlobal } from "./use-openai-global.js";
2
- export function useToolResponseMetadata() {
3
- return useOpenAiGlobal("toolResponseMetadata");
4
- }
5
- //# sourceMappingURL=use-tool-response-metadata.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-tool-response-metadata.js","sourceRoot":"","sources":["../../../src/web/use-tool-response-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD,MAAM,UAAU,uBAAuB;IACrC,OAAO,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACjD,CAAC"}