@superinterface/react 3.23.0 → 3.24.1
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/index.cjs +1296 -1225
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +13 -1
- package/dist/index.d.ts +13 -1
- package/dist/index.js +1081 -1010
- package/dist/index.js.map +1 -1
- package/dist/server.cjs +2 -2
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +2 -2
- package/dist/server.js.map +1 -1
- package/dist/utils.cjs +2 -2
- package/dist/utils.cjs.map +1 -1
- package/dist/utils.js +2 -2
- package/dist/utils.js.map +1 -1
- package/package.json +2 -4
package/dist/index.d.cts
CHANGED
|
@@ -740,11 +740,23 @@ declare const useComponents: () => {
|
|
|
740
740
|
}) => react_jsx_runtime.JSX.Element;
|
|
741
741
|
};
|
|
742
742
|
};
|
|
743
|
+
StartingToolCalls: () => react_jsx_runtime.JSX.Element;
|
|
743
744
|
Function: ({ fn, runStep, }: {
|
|
744
745
|
fn: openai_resources_beta_threads_runs_steps.FunctionToolCall.Function;
|
|
745
746
|
runStep: openai_resources_beta_threads_runs_steps.RunStep;
|
|
746
747
|
}) => react_jsx_runtime.JSX.Element;
|
|
747
|
-
|
|
748
|
+
CodeInterpreterToolCall: ({ codeInterpreter, runStep, }: {
|
|
749
|
+
codeInterpreter: openai_resources_beta_threads_runs_steps.CodeInterpreterToolCall.CodeInterpreter;
|
|
750
|
+
runStep: SerializedRunStep;
|
|
751
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
752
|
+
FileSearchToolCall: ({ runStep, toolCall, }: {
|
|
753
|
+
toolCall: ToolCall;
|
|
754
|
+
runStep: SerializedRunStep;
|
|
755
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
756
|
+
FallbackToolCall: ({ runStep, toolCall, }: {
|
|
757
|
+
toolCall: ToolCall;
|
|
758
|
+
runStep: SerializedRunStep;
|
|
759
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
748
760
|
TextContent: ({ content }: {
|
|
749
761
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|
|
750
762
|
}) => string | react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -740,11 +740,23 @@ declare const useComponents: () => {
|
|
|
740
740
|
}) => react_jsx_runtime.JSX.Element;
|
|
741
741
|
};
|
|
742
742
|
};
|
|
743
|
+
StartingToolCalls: () => react_jsx_runtime.JSX.Element;
|
|
743
744
|
Function: ({ fn, runStep, }: {
|
|
744
745
|
fn: openai_resources_beta_threads_runs_steps.FunctionToolCall.Function;
|
|
745
746
|
runStep: openai_resources_beta_threads_runs_steps.RunStep;
|
|
746
747
|
}) => react_jsx_runtime.JSX.Element;
|
|
747
|
-
|
|
748
|
+
CodeInterpreterToolCall: ({ codeInterpreter, runStep, }: {
|
|
749
|
+
codeInterpreter: openai_resources_beta_threads_runs_steps.CodeInterpreterToolCall.CodeInterpreter;
|
|
750
|
+
runStep: SerializedRunStep;
|
|
751
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
752
|
+
FileSearchToolCall: ({ runStep, toolCall, }: {
|
|
753
|
+
toolCall: ToolCall;
|
|
754
|
+
runStep: SerializedRunStep;
|
|
755
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
756
|
+
FallbackToolCall: ({ runStep, toolCall, }: {
|
|
757
|
+
toolCall: ToolCall;
|
|
758
|
+
runStep: SerializedRunStep;
|
|
759
|
+
}) => react_jsx_runtime.JSX.Element;
|
|
748
760
|
TextContent: ({ content }: {
|
|
749
761
|
content: openai_resources_beta_threads_messages.TextContentBlock;
|
|
750
762
|
}) => string | react_jsx_runtime.JSX.Element;
|