@gammatech/aijsx 0.7.2-dev.2024-05-22 → 0.8.0-dev.2024-05-24
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.d.mts +52 -3
- package/dist/index.d.ts +52 -3
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/dist/{jsx-dev-runtime-6M25UAsb.d.mts → jsx-dev-runtime-Kh2H5_Cf.d.mts} +1 -1
- package/dist/{jsx-dev-runtime-6M25UAsb.d.ts → jsx-dev-runtime-Kh2H5_Cf.d.ts} +1 -1
- package/dist/jsx-dev-runtime.d.mts +1 -1
- package/dist/jsx-dev-runtime.d.ts +1 -1
- package/dist/jsx-runtime.d.mts +1 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RenderContext, L as LogImplementation, S as SpanProcessor, C as ContextValues, a as Context, A as AINode, T as Tracer, b as ReadableSpan, c as SpanExporter, d as AIComponent, e as SpanAttributes, E as
|
|
2
|
-
export { I as AIElement,
|
|
1
|
+
import { R as RenderContext, L as LogImplementation, S as SpanProcessor, C as ContextValues, a as Context, A as AINode, T as Tracer, b as ReadableSpan, c as SpanExporter, d as AIComponent, e as SpanAttributes, P as Prompt, f as ChatCompletionRequestPayloads, g as RenderedConversationMessage, E as EvaluatorResult, h as EvaluatorFn, i as PromptParsed, N as NotAsyncGenerator, F as FunctionChain, j as StreamChain, k as ChatCompletionClientAndProvider, J as JSX } from './jsx-dev-runtime-Kh2H5_Cf.mjs';
|
|
2
|
+
export { I as AIElement, m as AIFragment, q as AssistantMessage, B as BoundLogger, s as ChatCompletionError, o as ChatCompletionRole, z as CombinedLogger, y as ConsoleLogger, D as Literal, t as LogChatCompletionRequest, u as LogChatCompletionResponse, v as LogLevel, w as Logger, x as NoopLogImplementation, _ as OutputParser, M as PropsOfAIComponent, G as RenderResult, K as Renderable, V as Span, O as SpanContext, W as SpanEvent, Q as SpanStatus, p as SystemMessage, Y as TracingContext, X as TracingContextKey, Z as TracingContextManager, U as UserMessage, H as attachedContextSymbol, r as computeUsage, l as createAIElement, n as createContext } from './jsx-dev-runtime-Kh2H5_Cf.mjs';
|
|
3
3
|
import { ZodObject, ZodRawShape, ZodTypeAny, ZodString, z } from 'zod';
|
|
4
4
|
import { OpenAI } from 'openai';
|
|
5
5
|
export { OpenAI as OpenAIClient } from 'openai';
|
|
@@ -102,6 +102,55 @@ type TraceProps = {
|
|
|
102
102
|
};
|
|
103
103
|
declare const Trace: AIComponent<TraceProps>;
|
|
104
104
|
|
|
105
|
+
type Cost = number;
|
|
106
|
+
type Usage = {
|
|
107
|
+
prompt: number;
|
|
108
|
+
completion: number;
|
|
109
|
+
total: number;
|
|
110
|
+
};
|
|
111
|
+
declare namespace AISpanAttributes {
|
|
112
|
+
type Prompt = {
|
|
113
|
+
prompt: Prompt;
|
|
114
|
+
promptKey: string;
|
|
115
|
+
variables: Record<string, any>;
|
|
116
|
+
output: string;
|
|
117
|
+
parsedOutput?: any;
|
|
118
|
+
};
|
|
119
|
+
type Chain = {
|
|
120
|
+
chainKey: string;
|
|
121
|
+
chainType: string;
|
|
122
|
+
variables: Record<string, any>;
|
|
123
|
+
};
|
|
124
|
+
type ChatCompletion<K extends keyof ChatCompletionRequestPayloads = keyof ChatCompletionRequestPayloads> = {
|
|
125
|
+
model: string;
|
|
126
|
+
cost?: number;
|
|
127
|
+
provider?: string;
|
|
128
|
+
providerRegion?: string;
|
|
129
|
+
retryCount?: number;
|
|
130
|
+
requestType: K;
|
|
131
|
+
chatCompletionRequest: ChatCompletionRequestPayloads[K];
|
|
132
|
+
inputMessages: RenderedConversationMessage[];
|
|
133
|
+
finishReason: string | null;
|
|
134
|
+
output: string;
|
|
135
|
+
tokensUsed: Usage;
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
declare namespace ProcessedAISpanAttributes {
|
|
139
|
+
type Prompt = AISpanAttributes.Prompt & {
|
|
140
|
+
prompt: never;
|
|
141
|
+
evaluators: EvaluatorResult[];
|
|
142
|
+
evaluatorResults: Record<string, EvaluatorResult>;
|
|
143
|
+
evaluatorError?: string;
|
|
144
|
+
totalUsage?: Usage;
|
|
145
|
+
totalCost?: Cost;
|
|
146
|
+
};
|
|
147
|
+
type Chain = AISpanAttributes.Chain & {
|
|
148
|
+
totalUsage?: Usage;
|
|
149
|
+
totalCost?: Cost;
|
|
150
|
+
};
|
|
151
|
+
type ChatCompletion<K extends keyof ChatCompletionRequestPayloads = keyof ChatCompletionRequestPayloads> = AISpanAttributes.ChatCompletion<K>;
|
|
152
|
+
}
|
|
153
|
+
|
|
105
154
|
/**
|
|
106
155
|
* This is a helper function to create a JsxPrompt type
|
|
107
156
|
*/
|
|
@@ -233,4 +282,4 @@ type ClaudeImageBlockUrl = {
|
|
|
233
282
|
type ClaudeImageBlockProps = ClaudeImageBlockBase64 | ClaudeImageBlockUrl;
|
|
234
283
|
declare const ClaudeImageBlock: (props: ClaudeImageBlockProps) => Promise<JSX.Element>;
|
|
235
284
|
|
|
236
|
-
export { AIComponent, AINode, AISpanProcessor, AnthropicChatCompletion, AnthropicChatCompletionInner, type AnthropicChatCompletionRequest, AnthropicClientContext, ChatCompletionClientAndProvider, ClaudeImageBlock, ContentTypeImage, Context, type CostFn, DefaultMaxRetriesContext, EnrichingSpanProcessor, EvaluatorFn, EvaluatorResult, Fallback, FunctionChain, LogImplementation, NotAsyncGenerator, OpenAIChatCompletion, type OpenAIChatCompletionRequest, type OpenAIChatMessage, OpenAIClientContext, OpenAIVisionChatCompletion, OpenAIVisionChatCompletionInner, ParseVariablesError, Prompt, PromptInvalidOutputError, PromptParsed, ReadableSpan, RenderContext, Retry, RetryCountContext, SpanAttributes, SpanExporter, SpanProcessor, StreamChain, Trace, Tracer, type ValidAnthropicChatModel, type ValidOpenAIChatModel, type ValidOpenAIVisionModel, createFunctionChain, createPrompt, createRenderContext, createStreamChain, evaluatePrompt, tokenCountForOpenAIMessage, tokenCountForOpenAIVisionMessage, tokenLimitForChatModel, tokenizer, tracing };
|
|
285
|
+
export { AIComponent, AINode, AISpanAttributes, AISpanProcessor, AnthropicChatCompletion, AnthropicChatCompletionInner, type AnthropicChatCompletionRequest, AnthropicClientContext, ChatCompletionClientAndProvider, type ChatCompletionRequestPayloads, ClaudeImageBlock, ContentTypeImage, Context, type CostFn, DefaultMaxRetriesContext, EnrichingSpanProcessor, EvaluatorFn, EvaluatorResult, Fallback, FunctionChain, LogImplementation, NotAsyncGenerator, OpenAIChatCompletion, type OpenAIChatCompletionRequest, type OpenAIChatMessage, OpenAIClientContext, OpenAIVisionChatCompletion, OpenAIVisionChatCompletionInner, ParseVariablesError, ProcessedAISpanAttributes, type Prompt, PromptInvalidOutputError, PromptParsed, ReadableSpan, RenderContext, RenderedConversationMessage, Retry, RetryCountContext, SpanAttributes, SpanExporter, SpanProcessor, StreamChain, Trace, Tracer, type ValidAnthropicChatModel, type ValidOpenAIChatModel, type ValidOpenAIVisionModel, createFunctionChain, createPrompt, createRenderContext, createStreamChain, evaluatePrompt, tokenCountForOpenAIMessage, tokenCountForOpenAIVisionMessage, tokenLimitForChatModel, tokenizer, tracing };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { R as RenderContext, L as LogImplementation, S as SpanProcessor, C as ContextValues, a as Context, A as AINode, T as Tracer, b as ReadableSpan, c as SpanExporter, d as AIComponent, e as SpanAttributes, E as
|
|
2
|
-
export { I as AIElement,
|
|
1
|
+
import { R as RenderContext, L as LogImplementation, S as SpanProcessor, C as ContextValues, a as Context, A as AINode, T as Tracer, b as ReadableSpan, c as SpanExporter, d as AIComponent, e as SpanAttributes, P as Prompt, f as ChatCompletionRequestPayloads, g as RenderedConversationMessage, E as EvaluatorResult, h as EvaluatorFn, i as PromptParsed, N as NotAsyncGenerator, F as FunctionChain, j as StreamChain, k as ChatCompletionClientAndProvider, J as JSX } from './jsx-dev-runtime-Kh2H5_Cf.js';
|
|
2
|
+
export { I as AIElement, m as AIFragment, q as AssistantMessage, B as BoundLogger, s as ChatCompletionError, o as ChatCompletionRole, z as CombinedLogger, y as ConsoleLogger, D as Literal, t as LogChatCompletionRequest, u as LogChatCompletionResponse, v as LogLevel, w as Logger, x as NoopLogImplementation, _ as OutputParser, M as PropsOfAIComponent, G as RenderResult, K as Renderable, V as Span, O as SpanContext, W as SpanEvent, Q as SpanStatus, p as SystemMessage, Y as TracingContext, X as TracingContextKey, Z as TracingContextManager, U as UserMessage, H as attachedContextSymbol, r as computeUsage, l as createAIElement, n as createContext } from './jsx-dev-runtime-Kh2H5_Cf.js';
|
|
3
3
|
import { ZodObject, ZodRawShape, ZodTypeAny, ZodString, z } from 'zod';
|
|
4
4
|
import { OpenAI } from 'openai';
|
|
5
5
|
export { OpenAI as OpenAIClient } from 'openai';
|
|
@@ -102,6 +102,55 @@ type TraceProps = {
|
|
|
102
102
|
};
|
|
103
103
|
declare const Trace: AIComponent<TraceProps>;
|
|
104
104
|
|
|
105
|
+
type Cost = number;
|
|
106
|
+
type Usage = {
|
|
107
|
+
prompt: number;
|
|
108
|
+
completion: number;
|
|
109
|
+
total: number;
|
|
110
|
+
};
|
|
111
|
+
declare namespace AISpanAttributes {
|
|
112
|
+
type Prompt = {
|
|
113
|
+
prompt: Prompt;
|
|
114
|
+
promptKey: string;
|
|
115
|
+
variables: Record<string, any>;
|
|
116
|
+
output: string;
|
|
117
|
+
parsedOutput?: any;
|
|
118
|
+
};
|
|
119
|
+
type Chain = {
|
|
120
|
+
chainKey: string;
|
|
121
|
+
chainType: string;
|
|
122
|
+
variables: Record<string, any>;
|
|
123
|
+
};
|
|
124
|
+
type ChatCompletion<K extends keyof ChatCompletionRequestPayloads = keyof ChatCompletionRequestPayloads> = {
|
|
125
|
+
model: string;
|
|
126
|
+
cost?: number;
|
|
127
|
+
provider?: string;
|
|
128
|
+
providerRegion?: string;
|
|
129
|
+
retryCount?: number;
|
|
130
|
+
requestType: K;
|
|
131
|
+
chatCompletionRequest: ChatCompletionRequestPayloads[K];
|
|
132
|
+
inputMessages: RenderedConversationMessage[];
|
|
133
|
+
finishReason: string | null;
|
|
134
|
+
output: string;
|
|
135
|
+
tokensUsed: Usage;
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
declare namespace ProcessedAISpanAttributes {
|
|
139
|
+
type Prompt = AISpanAttributes.Prompt & {
|
|
140
|
+
prompt: never;
|
|
141
|
+
evaluators: EvaluatorResult[];
|
|
142
|
+
evaluatorResults: Record<string, EvaluatorResult>;
|
|
143
|
+
evaluatorError?: string;
|
|
144
|
+
totalUsage?: Usage;
|
|
145
|
+
totalCost?: Cost;
|
|
146
|
+
};
|
|
147
|
+
type Chain = AISpanAttributes.Chain & {
|
|
148
|
+
totalUsage?: Usage;
|
|
149
|
+
totalCost?: Cost;
|
|
150
|
+
};
|
|
151
|
+
type ChatCompletion<K extends keyof ChatCompletionRequestPayloads = keyof ChatCompletionRequestPayloads> = AISpanAttributes.ChatCompletion<K>;
|
|
152
|
+
}
|
|
153
|
+
|
|
105
154
|
/**
|
|
106
155
|
* This is a helper function to create a JsxPrompt type
|
|
107
156
|
*/
|
|
@@ -233,4 +282,4 @@ type ClaudeImageBlockUrl = {
|
|
|
233
282
|
type ClaudeImageBlockProps = ClaudeImageBlockBase64 | ClaudeImageBlockUrl;
|
|
234
283
|
declare const ClaudeImageBlock: (props: ClaudeImageBlockProps) => Promise<JSX.Element>;
|
|
235
284
|
|
|
236
|
-
export { AIComponent, AINode, AISpanProcessor, AnthropicChatCompletion, AnthropicChatCompletionInner, type AnthropicChatCompletionRequest, AnthropicClientContext, ChatCompletionClientAndProvider, ClaudeImageBlock, ContentTypeImage, Context, type CostFn, DefaultMaxRetriesContext, EnrichingSpanProcessor, EvaluatorFn, EvaluatorResult, Fallback, FunctionChain, LogImplementation, NotAsyncGenerator, OpenAIChatCompletion, type OpenAIChatCompletionRequest, type OpenAIChatMessage, OpenAIClientContext, OpenAIVisionChatCompletion, OpenAIVisionChatCompletionInner, ParseVariablesError, Prompt, PromptInvalidOutputError, PromptParsed, ReadableSpan, RenderContext, Retry, RetryCountContext, SpanAttributes, SpanExporter, SpanProcessor, StreamChain, Trace, Tracer, type ValidAnthropicChatModel, type ValidOpenAIChatModel, type ValidOpenAIVisionModel, createFunctionChain, createPrompt, createRenderContext, createStreamChain, evaluatePrompt, tokenCountForOpenAIMessage, tokenCountForOpenAIVisionMessage, tokenLimitForChatModel, tokenizer, tracing };
|
|
285
|
+
export { AIComponent, AINode, AISpanAttributes, AISpanProcessor, AnthropicChatCompletion, AnthropicChatCompletionInner, type AnthropicChatCompletionRequest, AnthropicClientContext, ChatCompletionClientAndProvider, type ChatCompletionRequestPayloads, ClaudeImageBlock, ContentTypeImage, Context, type CostFn, DefaultMaxRetriesContext, EnrichingSpanProcessor, EvaluatorFn, EvaluatorResult, Fallback, FunctionChain, LogImplementation, NotAsyncGenerator, OpenAIChatCompletion, type OpenAIChatCompletionRequest, type OpenAIChatMessage, OpenAIClientContext, OpenAIVisionChatCompletion, OpenAIVisionChatCompletionInner, ParseVariablesError, ProcessedAISpanAttributes, type Prompt, PromptInvalidOutputError, PromptParsed, ReadableSpan, RenderContext, RenderedConversationMessage, Retry, RetryCountContext, SpanAttributes, SpanExporter, SpanProcessor, StreamChain, Trace, Tracer, type ValidAnthropicChatModel, type ValidOpenAIChatModel, type ValidOpenAIVisionModel, createFunctionChain, createPrompt, createRenderContext, createStreamChain, evaluatePrompt, tokenCountForOpenAIMessage, tokenCountForOpenAIVisionMessage, tokenLimitForChatModel, tokenizer, tracing };
|
package/dist/index.js
CHANGED
|
@@ -1824,7 +1824,8 @@ var renderChatMessageContent = (content) => {
|
|
|
1824
1824
|
if (part.type === "text") {
|
|
1825
1825
|
return part.text;
|
|
1826
1826
|
} else if (part.type === "image_url") {
|
|
1827
|
-
|
|
1827
|
+
let imageUrl = part.image_url.url.startsWith("data:image") ? part.image_url.url.slice(0, 22) + "..." : part.image_url.url;
|
|
1828
|
+
return `<ContentTypeImage url="${imageUrl}" detail="${part.image_url.detail || "auto"}" />`;
|
|
1828
1829
|
}
|
|
1829
1830
|
throw new Error("Invalid ChatCompletionContentPart type");
|
|
1830
1831
|
}).join("\n\n");
|
|
@@ -1950,6 +1951,7 @@ async function* OpenAIChatCompletionInner(props, { logger, render, tracer, getCo
|
|
|
1950
1951
|
providerRegion,
|
|
1951
1952
|
requestType: "openai",
|
|
1952
1953
|
chatCompletionRequest,
|
|
1954
|
+
inputMessages: renderedMessages,
|
|
1953
1955
|
retryCount
|
|
1954
1956
|
});
|
|
1955
1957
|
let chatResponse;
|
|
@@ -2184,6 +2186,7 @@ async function* OpenAIVisionChatCompletionInner(props, { logger, render, tracer,
|
|
|
2184
2186
|
providerRegion,
|
|
2185
2187
|
requestType: "openai",
|
|
2186
2188
|
chatCompletionRequest: chatCompletionRequestToLog,
|
|
2189
|
+
inputMessages: renderedMessages,
|
|
2187
2190
|
retryCount
|
|
2188
2191
|
});
|
|
2189
2192
|
let chatResponse;
|
|
@@ -2467,6 +2470,7 @@ async function* AnthropicChatCompletionInner(props, { render, logger, tracer, ge
|
|
|
2467
2470
|
providerRegion,
|
|
2468
2471
|
requestType: "anthropic",
|
|
2469
2472
|
chatCompletionRequest: chatCompletionRequestToLog,
|
|
2473
|
+
inputMessages,
|
|
2470
2474
|
retryCount
|
|
2471
2475
|
});
|
|
2472
2476
|
let response;
|
package/dist/index.mjs
CHANGED
|
@@ -1720,7 +1720,8 @@ var renderChatMessageContent = (content) => {
|
|
|
1720
1720
|
if (part.type === "text") {
|
|
1721
1721
|
return part.text;
|
|
1722
1722
|
} else if (part.type === "image_url") {
|
|
1723
|
-
|
|
1723
|
+
let imageUrl = part.image_url.url.startsWith("data:image") ? part.image_url.url.slice(0, 22) + "..." : part.image_url.url;
|
|
1724
|
+
return `<ContentTypeImage url="${imageUrl}" detail="${part.image_url.detail || "auto"}" />`;
|
|
1724
1725
|
}
|
|
1725
1726
|
throw new Error("Invalid ChatCompletionContentPart type");
|
|
1726
1727
|
}).join("\n\n");
|
|
@@ -1846,6 +1847,7 @@ async function* OpenAIChatCompletionInner(props, { logger, render, tracer, getCo
|
|
|
1846
1847
|
providerRegion,
|
|
1847
1848
|
requestType: "openai",
|
|
1848
1849
|
chatCompletionRequest,
|
|
1850
|
+
inputMessages: renderedMessages,
|
|
1849
1851
|
retryCount
|
|
1850
1852
|
});
|
|
1851
1853
|
let chatResponse;
|
|
@@ -2080,6 +2082,7 @@ async function* OpenAIVisionChatCompletionInner(props, { logger, render, tracer,
|
|
|
2080
2082
|
providerRegion,
|
|
2081
2083
|
requestType: "openai",
|
|
2082
2084
|
chatCompletionRequest: chatCompletionRequestToLog,
|
|
2085
|
+
inputMessages: renderedMessages,
|
|
2083
2086
|
retryCount
|
|
2084
2087
|
});
|
|
2085
2088
|
let chatResponse;
|
|
@@ -2363,6 +2366,7 @@ async function* AnthropicChatCompletionInner(props, { render, logger, tracer, ge
|
|
|
2363
2366
|
providerRegion,
|
|
2364
2367
|
requestType: "anthropic",
|
|
2365
2368
|
chatCompletionRequest: chatCompletionRequestToLog,
|
|
2369
|
+
inputMessages,
|
|
2366
2370
|
retryCount
|
|
2367
2371
|
});
|
|
2368
2372
|
let response;
|
|
@@ -356,4 +356,4 @@ declare const jsxs: typeof jsx;
|
|
|
356
356
|
/** @hidden */
|
|
357
357
|
declare const Fragment: typeof AIFragment;
|
|
358
358
|
|
|
359
|
-
export { jsx as $, type AINode as A, BoundLogger as B, type ContextValues as C, type Literal as D, type
|
|
359
|
+
export { jsx as $, type AINode as A, BoundLogger as B, type ContextValues as C, type Literal as D, type EvaluatorResult as E, type FunctionChain as F, type RenderResult as G, attachedContextSymbol as H, type AIElement as I, JSX as J, type Renderable as K, LogImplementation as L, type PropsOfAIComponent as M, type NotAsyncGenerator as N, type SpanContext as O, type Prompt as P, type SpanStatus as Q, type RenderContext as R, type SpanProcessor as S, type Tracer as T, UserMessage as U, type Span as V, type SpanEvent as W, type TracingContextKey as X, type TracingContext as Y, type TracingContextManager as Z, type OutputParser as _, type Context as a, jsxDEV as a0, jsxs as a1, Fragment as a2, type ReadableSpan as b, type SpanExporter as c, type AIComponent as d, type SpanAttributes as e, type ChatCompletionRequestPayloads as f, type RenderedConversationMessage as g, type EvaluatorFn as h, type PromptParsed as i, type StreamChain as j, type ChatCompletionClientAndProvider as k, createAIElement as l, AIFragment as m, createContext as n, type ChatCompletionRole as o, SystemMessage as p, AssistantMessage as q, computeUsage as r, ChatCompletionError as s, type LogChatCompletionRequest as t, type LogChatCompletionResponse as u, type LogLevel as v, type Logger as w, NoopLogImplementation as x, ConsoleLogger as y, CombinedLogger as z };
|
|
@@ -356,4 +356,4 @@ declare const jsxs: typeof jsx;
|
|
|
356
356
|
/** @hidden */
|
|
357
357
|
declare const Fragment: typeof AIFragment;
|
|
358
358
|
|
|
359
|
-
export { jsx as $, type AINode as A, BoundLogger as B, type ContextValues as C, type Literal as D, type
|
|
359
|
+
export { jsx as $, type AINode as A, BoundLogger as B, type ContextValues as C, type Literal as D, type EvaluatorResult as E, type FunctionChain as F, type RenderResult as G, attachedContextSymbol as H, type AIElement as I, JSX as J, type Renderable as K, LogImplementation as L, type PropsOfAIComponent as M, type NotAsyncGenerator as N, type SpanContext as O, type Prompt as P, type SpanStatus as Q, type RenderContext as R, type SpanProcessor as S, type Tracer as T, UserMessage as U, type Span as V, type SpanEvent as W, type TracingContextKey as X, type TracingContext as Y, type TracingContextManager as Z, type OutputParser as _, type Context as a, jsxDEV as a0, jsxs as a1, Fragment as a2, type ReadableSpan as b, type SpanExporter as c, type AIComponent as d, type SpanAttributes as e, type ChatCompletionRequestPayloads as f, type RenderedConversationMessage as g, type EvaluatorFn as h, type PromptParsed as i, type StreamChain as j, type ChatCompletionClientAndProvider as k, createAIElement as l, AIFragment as m, createContext as n, type ChatCompletionRole as o, SystemMessage as p, AssistantMessage as q, computeUsage as r, ChatCompletionError as s, type LogChatCompletionRequest as t, type LogChatCompletionResponse as u, type LogLevel as v, type Logger as w, NoopLogImplementation as x, ConsoleLogger as y, CombinedLogger as z };
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-Kh2H5_Cf.mjs';
|
|
2
2
|
import 'zod';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-Kh2H5_Cf.js';
|
|
2
2
|
import 'zod';
|
package/dist/jsx-runtime.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-Kh2H5_Cf.mjs';
|
|
2
2
|
import 'zod';
|
package/dist/jsx-runtime.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-
|
|
1
|
+
export { a2 as Fragment, J as JSX, $ as jsx, a0 as jsxDEV, a1 as jsxs } from './jsx-dev-runtime-Kh2H5_Cf.js';
|
|
2
2
|
import 'zod';
|