langwatch 0.2.0 → 0.3.0-prerelease.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.
Files changed (235) hide show
  1. package/.editorconfig +16 -0
  2. package/LICENSE +7 -0
  3. package/README.md +268 -1
  4. package/copy-types.sh +19 -8
  5. package/examples/langchain/.env.example +2 -0
  6. package/examples/langchain/README.md +42 -0
  7. package/examples/langchain/package-lock.json +2930 -0
  8. package/examples/langchain/package.json +27 -0
  9. package/examples/langchain/src/cli-markdown.d.ts +137 -0
  10. package/examples/langchain/src/index.ts +109 -0
  11. package/examples/langchain/tsconfig.json +25 -0
  12. package/examples/langgraph/.env.example +2 -0
  13. package/examples/langgraph/README.md +42 -0
  14. package/examples/langgraph/package-lock.json +3031 -0
  15. package/examples/langgraph/package.json +28 -0
  16. package/examples/langgraph/src/cli-markdown.d.ts +137 -0
  17. package/examples/langgraph/src/index.ts +196 -0
  18. package/examples/langgraph/tsconfig.json +25 -0
  19. package/examples/mastra/.env.example +2 -0
  20. package/examples/mastra/README.md +57 -0
  21. package/examples/mastra/package-lock.json +5296 -0
  22. package/examples/mastra/package.json +32 -0
  23. package/examples/mastra/src/cli-markdown.d.ts +137 -0
  24. package/examples/mastra/src/index.ts +120 -0
  25. package/examples/mastra/src/mastra/agents/weather-agent.ts +30 -0
  26. package/examples/mastra/src/mastra/index.ts +21 -0
  27. package/examples/mastra/src/mastra/tools/weather-tool.ts +102 -0
  28. package/examples/mastra/tsconfig.json +25 -0
  29. package/examples/vercel-ai/.env.example +2 -0
  30. package/examples/vercel-ai/README.md +38 -0
  31. package/examples/vercel-ai/package-lock.json +2571 -0
  32. package/examples/vercel-ai/package.json +27 -0
  33. package/examples/vercel-ai/src/cli-markdown.d.ts +137 -0
  34. package/examples/vercel-ai/src/index.ts +110 -0
  35. package/examples/vercel-ai/src/instrumentation.ts +9 -0
  36. package/examples/vercel-ai/tsconfig.json +25 -0
  37. package/package.json +78 -34
  38. package/src/__tests__/client-browser.test.ts +92 -0
  39. package/src/__tests__/client-node.test.ts +76 -0
  40. package/src/__tests__/client.test.ts +71 -0
  41. package/src/__tests__/integration/client-browser.test.ts +46 -0
  42. package/src/__tests__/integration/client-node.test.ts +46 -0
  43. package/src/client-browser.ts +70 -0
  44. package/src/client-node.ts +82 -0
  45. package/src/client-shared.ts +72 -0
  46. package/src/client.ts +119 -0
  47. package/src/evaluation/__tests__/record-evaluation.test.ts +112 -0
  48. package/src/evaluation/__tests__/run-evaluation.test.ts +171 -0
  49. package/src/evaluation/index.ts +2 -0
  50. package/src/evaluation/record-evaluation.ts +101 -0
  51. package/src/evaluation/run-evaluation.ts +133 -0
  52. package/src/evaluation/tracer.ts +3 -0
  53. package/src/evaluation/types.ts +23 -0
  54. package/src/index.ts +10 -593
  55. package/src/internal/api/__tests__/errors.test.ts +98 -0
  56. package/src/internal/api/client.ts +30 -0
  57. package/src/internal/api/errors.ts +32 -0
  58. package/src/internal/generated/types/.gitkeep +0 -0
  59. package/src/observability/__tests__/integration/base.test.ts +74 -0
  60. package/src/observability/__tests__/integration/browser-setup-ordering.test.ts +60 -0
  61. package/src/observability/__tests__/integration/complex-nested-spans.test.ts +29 -0
  62. package/src/observability/__tests__/integration/error-handling.test.ts +24 -0
  63. package/src/observability/__tests__/integration/langwatch-disabled-otel.test.ts +24 -0
  64. package/src/observability/__tests__/integration/langwatch-first-then-vercel.test.ts +24 -0
  65. package/src/observability/__tests__/integration/multiple-setup-attempts.test.ts +27 -0
  66. package/src/observability/__tests__/integration/otel-ordering.test.ts +27 -0
  67. package/src/observability/__tests__/integration/vercel-configurations.test.ts +20 -0
  68. package/src/observability/__tests__/integration/vercel-first-then-langwatch.test.ts +27 -0
  69. package/src/observability/__tests__/span.test.ts +214 -0
  70. package/src/observability/__tests__/trace.test.ts +180 -0
  71. package/src/observability/exporters/index.ts +1 -0
  72. package/src/observability/exporters/langwatch-exporter.ts +53 -0
  73. package/src/observability/index.ts +4 -0
  74. package/src/observability/instrumentation/langchain/__tests__/integration/langchain-chatbot.test.ts +112 -0
  75. package/src/observability/instrumentation/langchain/__tests__/langchain.test.ts +284 -0
  76. package/src/observability/instrumentation/langchain/index.ts +624 -0
  77. package/src/observability/processors/__tests__/filterable-batch-span-exporter.test.ts +98 -0
  78. package/src/observability/processors/filterable-batch-span-processor.ts +99 -0
  79. package/src/observability/processors/index.ts +1 -0
  80. package/src/observability/semconv/attributes.ts +185 -0
  81. package/src/observability/semconv/events.ts +42 -0
  82. package/src/observability/semconv/index.ts +16 -0
  83. package/src/observability/semconv/values.ts +159 -0
  84. package/src/observability/span.ts +728 -0
  85. package/src/observability/trace.ts +301 -0
  86. package/src/prompt/__tests__/prompt.test.ts +139 -0
  87. package/src/prompt/get-prompt-version.ts +49 -0
  88. package/src/prompt/get-prompt.ts +44 -0
  89. package/src/prompt/index.ts +3 -0
  90. package/src/prompt/prompt.ts +133 -0
  91. package/src/prompt/service.ts +221 -0
  92. package/src/prompt/tracer.ts +3 -0
  93. package/src/prompt/types.ts +0 -0
  94. package/ts-to-zod.config.js +11 -0
  95. package/tsconfig.json +3 -9
  96. package/tsup.config.ts +11 -1
  97. package/vitest.config.ts +1 -0
  98. package/dist/chunk-LKD2K67J.mjs +0 -717
  99. package/dist/chunk-LKD2K67J.mjs.map +0 -1
  100. package/dist/index.d.mts +0 -1030
  101. package/dist/index.d.ts +0 -1030
  102. package/dist/index.js +0 -27310
  103. package/dist/index.js.map +0 -1
  104. package/dist/index.mjs +0 -963
  105. package/dist/index.mjs.map +0 -1
  106. package/dist/utils-Cv-rUjJ1.d.mts +0 -313
  107. package/dist/utils-Cv-rUjJ1.d.ts +0 -313
  108. package/dist/utils.d.mts +0 -2
  109. package/dist/utils.d.ts +0 -2
  110. package/dist/utils.js +0 -709
  111. package/dist/utils.js.map +0 -1
  112. package/dist/utils.mjs +0 -11
  113. package/dist/utils.mjs.map +0 -1
  114. package/example/.env.example +0 -12
  115. package/example/.eslintrc.json +0 -26
  116. package/example/LICENSE +0 -13
  117. package/example/README.md +0 -12
  118. package/example/app/(chat)/chat/[id]/page.tsx +0 -60
  119. package/example/app/(chat)/layout.tsx +0 -14
  120. package/example/app/(chat)/page.tsx +0 -27
  121. package/example/app/actions.ts +0 -156
  122. package/example/app/globals.css +0 -76
  123. package/example/app/guardrails/page.tsx +0 -26
  124. package/example/app/langchain/page.tsx +0 -27
  125. package/example/app/langchain-rag/page.tsx +0 -28
  126. package/example/app/late-update/page.tsx +0 -27
  127. package/example/app/layout.tsx +0 -64
  128. package/example/app/login/actions.ts +0 -71
  129. package/example/app/login/page.tsx +0 -18
  130. package/example/app/manual/page.tsx +0 -27
  131. package/example/app/new/page.tsx +0 -5
  132. package/example/app/opengraph-image.png +0 -0
  133. package/example/app/share/[id]/page.tsx +0 -58
  134. package/example/app/signup/actions.ts +0 -111
  135. package/example/app/signup/page.tsx +0 -18
  136. package/example/app/twitter-image.png +0 -0
  137. package/example/auth.config.ts +0 -42
  138. package/example/auth.ts +0 -45
  139. package/example/components/button-scroll-to-bottom.tsx +0 -36
  140. package/example/components/chat-history.tsx +0 -49
  141. package/example/components/chat-list.tsx +0 -52
  142. package/example/components/chat-message-actions.tsx +0 -40
  143. package/example/components/chat-message.tsx +0 -80
  144. package/example/components/chat-panel.tsx +0 -139
  145. package/example/components/chat-share-dialog.tsx +0 -95
  146. package/example/components/chat.tsx +0 -84
  147. package/example/components/clear-history.tsx +0 -75
  148. package/example/components/empty-screen.tsx +0 -38
  149. package/example/components/external-link.tsx +0 -29
  150. package/example/components/footer.tsx +0 -19
  151. package/example/components/header.tsx +0 -114
  152. package/example/components/login-button.tsx +0 -42
  153. package/example/components/login-form.tsx +0 -97
  154. package/example/components/markdown.tsx +0 -9
  155. package/example/components/prompt-form.tsx +0 -115
  156. package/example/components/providers.tsx +0 -17
  157. package/example/components/sidebar-actions.tsx +0 -125
  158. package/example/components/sidebar-desktop.tsx +0 -19
  159. package/example/components/sidebar-footer.tsx +0 -16
  160. package/example/components/sidebar-item.tsx +0 -124
  161. package/example/components/sidebar-items.tsx +0 -42
  162. package/example/components/sidebar-list.tsx +0 -38
  163. package/example/components/sidebar-mobile.tsx +0 -31
  164. package/example/components/sidebar-toggle.tsx +0 -24
  165. package/example/components/sidebar.tsx +0 -21
  166. package/example/components/signup-form.tsx +0 -95
  167. package/example/components/stocks/events-skeleton.tsx +0 -31
  168. package/example/components/stocks/events.tsx +0 -30
  169. package/example/components/stocks/index.tsx +0 -36
  170. package/example/components/stocks/message.tsx +0 -134
  171. package/example/components/stocks/spinner.tsx +0 -16
  172. package/example/components/stocks/stock-purchase.tsx +0 -146
  173. package/example/components/stocks/stock-skeleton.tsx +0 -22
  174. package/example/components/stocks/stock.tsx +0 -210
  175. package/example/components/stocks/stocks-skeleton.tsx +0 -9
  176. package/example/components/stocks/stocks.tsx +0 -67
  177. package/example/components/tailwind-indicator.tsx +0 -14
  178. package/example/components/theme-toggle.tsx +0 -31
  179. package/example/components/ui/alert-dialog.tsx +0 -141
  180. package/example/components/ui/badge.tsx +0 -36
  181. package/example/components/ui/button.tsx +0 -57
  182. package/example/components/ui/codeblock.tsx +0 -148
  183. package/example/components/ui/dialog.tsx +0 -122
  184. package/example/components/ui/dropdown-menu.tsx +0 -205
  185. package/example/components/ui/icons.tsx +0 -507
  186. package/example/components/ui/input.tsx +0 -25
  187. package/example/components/ui/label.tsx +0 -26
  188. package/example/components/ui/select.tsx +0 -164
  189. package/example/components/ui/separator.tsx +0 -31
  190. package/example/components/ui/sheet.tsx +0 -140
  191. package/example/components/ui/sonner.tsx +0 -31
  192. package/example/components/ui/switch.tsx +0 -29
  193. package/example/components/ui/textarea.tsx +0 -24
  194. package/example/components/ui/tooltip.tsx +0 -30
  195. package/example/components/user-menu.tsx +0 -53
  196. package/example/components.json +0 -17
  197. package/example/instrumentation.ts +0 -11
  198. package/example/lib/chat/guardrails.tsx +0 -181
  199. package/example/lib/chat/langchain-rag.tsx +0 -191
  200. package/example/lib/chat/langchain.tsx +0 -112
  201. package/example/lib/chat/late-update.tsx +0 -208
  202. package/example/lib/chat/manual.tsx +0 -605
  203. package/example/lib/chat/vercel-ai.tsx +0 -576
  204. package/example/lib/hooks/use-copy-to-clipboard.tsx +0 -33
  205. package/example/lib/hooks/use-enter-submit.tsx +0 -23
  206. package/example/lib/hooks/use-local-storage.ts +0 -24
  207. package/example/lib/hooks/use-scroll-anchor.tsx +0 -86
  208. package/example/lib/hooks/use-sidebar.tsx +0 -60
  209. package/example/lib/hooks/use-streamable-text.ts +0 -25
  210. package/example/lib/types.ts +0 -41
  211. package/example/lib/utils.ts +0 -89
  212. package/example/middleware.ts +0 -8
  213. package/example/next-env.d.ts +0 -5
  214. package/example/next.config.js +0 -16
  215. package/example/package-lock.json +0 -10917
  216. package/example/package.json +0 -84
  217. package/example/pnpm-lock.yaml +0 -5712
  218. package/example/postcss.config.js +0 -6
  219. package/example/prettier.config.cjs +0 -34
  220. package/example/public/apple-touch-icon.png +0 -0
  221. package/example/public/favicon-16x16.png +0 -0
  222. package/example/public/favicon.ico +0 -0
  223. package/example/public/next.svg +0 -1
  224. package/example/public/thirteen.svg +0 -1
  225. package/example/public/vercel.svg +0 -1
  226. package/example/tailwind.config.ts +0 -81
  227. package/example/tsconfig.json +0 -35
  228. package/src/LangWatchExporter.ts +0 -96
  229. package/src/evaluations.ts +0 -219
  230. package/src/index.test.ts +0 -402
  231. package/src/langchain.ts +0 -557
  232. package/src/typeUtils.ts +0 -89
  233. package/src/types.ts +0 -82
  234. package/src/utils.ts +0 -205
  235. /package/src/{server/types → internal/generated/openapi}/.gitkeep +0 -0
@@ -1,313 +0,0 @@
1
- import { CoreMessage } from 'ai';
2
-
3
- type ChatRole = "system" | "user" | "assistant" | "function" | "tool" | "unknown";
4
- interface FunctionCall {
5
- name?: string;
6
- arguments?: string;
7
- }
8
- interface ToolCall {
9
- id: string;
10
- type: string;
11
- function: FunctionCall;
12
- }
13
- interface ChatMessage$1 {
14
- role?: ChatRole;
15
- content?: string | ChatRichContent$1[] | null;
16
- function_call?: FunctionCall | null;
17
- tool_calls?: ToolCall[] | null;
18
- tool_call_id?: string | null;
19
- name?: string | null;
20
- }
21
- type ChatRichContent$1 = {
22
- type: "text";
23
- text?: string;
24
- } | {
25
- text: string;
26
- } | {
27
- type: "image_url";
28
- image_url?: {
29
- url: string;
30
- detail?: "auto" | "low" | "high";
31
- };
32
- } | {
33
- type: "tool_call";
34
- toolName?: string;
35
- toolCallId?: string;
36
- args?: string;
37
- } | {
38
- type: "tool_result";
39
- toolName?: string;
40
- toolCallId?: string;
41
- result?: any;
42
- };
43
- interface TypedValueChatMessages {
44
- type: "chat_messages";
45
- value: ChatMessage$1[];
46
- }
47
- interface TypedValueText {
48
- type: "text";
49
- value: string;
50
- }
51
- interface TypedValueRaw {
52
- type: "raw";
53
- value: string;
54
- }
55
- type JSONSerializable = string | number | boolean | null | Record<string, any> | any[];
56
- interface TypedValueJson {
57
- type: "json";
58
- value: JSONSerializable;
59
- }
60
- type Money = {
61
- currency: string;
62
- amount: number;
63
- };
64
- interface EvaluationResult {
65
- status: "processed" | "skipped" | "error";
66
- passed?: boolean | null;
67
- score?: number | null;
68
- label?: string | null;
69
- details?: string | null;
70
- cost?: Money | null;
71
- }
72
- interface TypedValueGuardrailResult {
73
- type: "guardrail_result";
74
- value: EvaluationResult;
75
- }
76
- interface TypedValueEvaluationResult {
77
- type: "evaluation_result";
78
- value: EvaluationResult;
79
- }
80
- type SpanInputOutput$1 = TypedValueText | TypedValueChatMessages | TypedValueGuardrailResult | TypedValueEvaluationResult | TypedValueJson | TypedValueRaw | {
81
- type: "list";
82
- value: SpanInputOutput$1[];
83
- };
84
- interface ErrorCapture$1 {
85
- has_error: true;
86
- message: string;
87
- stacktrace: string[];
88
- }
89
- interface SpanMetrics {
90
- prompt_tokens?: number | null;
91
- completion_tokens?: number | null;
92
- tokens_estimated?: boolean | null;
93
- cost?: number | null;
94
- }
95
- type ReservedSpanParams = {
96
- frequency_penalty?: number | null;
97
- logit_bias?: Record<string, number> | null;
98
- logprobs?: boolean | null;
99
- top_logprobs?: number | null;
100
- max_tokens?: number | null;
101
- n?: number | null;
102
- presence_penalty?: number | null;
103
- seed?: number | null;
104
- stop?: string | string[] | null;
105
- stream?: boolean | null;
106
- temperature?: number | null;
107
- top_p?: number | null;
108
- tools?: Record<string, any>[] | null;
109
- tool_choice?: Record<string, any> | string | null;
110
- parallel_tool_calls?: boolean | null;
111
- functions?: Record<string, any>[] | null;
112
- user?: string | null;
113
- };
114
- type SpanParams = ReservedSpanParams & Record<string, any>;
115
- interface SpanTimestamps {
116
- started_at: number;
117
- first_token_at?: number | null;
118
- finished_at: number;
119
- }
120
- type SpanTypes = "span" | "llm" | "chain" | "tool" | "agent" | "rag" | "guardrail" | "evaluation" | "workflow" | "component" | "module" | "server" | "client" | "producer" | "consumer" | "task" | "unknown";
121
- interface BaseSpan$1 {
122
- span_id: string;
123
- parent_id?: string | null;
124
- trace_id: string;
125
- type: SpanTypes;
126
- name?: string | null;
127
- input?: SpanInputOutput$1 | null;
128
- output?: SpanInputOutput$1 | null;
129
- error?: ErrorCapture$1 | null;
130
- timestamps: SpanTimestamps;
131
- metrics?: SpanMetrics | null;
132
- params?: SpanParams | null;
133
- }
134
- interface LLMSpan$1 extends BaseSpan$1 {
135
- type: "llm";
136
- vendor?: string | null;
137
- model?: string | null;
138
- }
139
- interface RAGChunk {
140
- document_id?: string | null;
141
- chunk_id?: string | null;
142
- content: string | Record<string, any> | any[];
143
- }
144
- interface RAGSpan$1 extends BaseSpan$1 {
145
- type: "rag";
146
- contexts: RAGChunk[];
147
- }
148
- type Span = LLMSpan$1 | RAGSpan$1 | BaseSpan$1;
149
- type TraceInput = {
150
- value: string;
151
- satisfaction_score?: number;
152
- };
153
- type TraceOutput = {
154
- value: string;
155
- };
156
- type PrimitiveType = string | number | boolean | null | undefined;
157
- type ReservedTraceMetadata = {
158
- thread_id?: string | null;
159
- user_id?: string | null;
160
- customer_id?: string | null;
161
- labels?: string[] | null;
162
- topic_id?: string | null;
163
- subtopic_id?: string | null;
164
- sdk_name?: string | null;
165
- sdk_version?: string | null;
166
- sdk_language?: string | null;
167
- telemetry_sdk_language?: string | null;
168
- telemetry_sdk_name?: string | null;
169
- telemetry_sdk_version?: string | null;
170
- prompt_ids?: string[] | null;
171
- prompt_version_ids?: string[] | null;
172
- };
173
- type CustomMetadata = Record<string, PrimitiveType | PrimitiveType[] | Record<string, PrimitiveType> | Record<string, Record<string, PrimitiveType>>>;
174
- type TraceMetadata = ReservedTraceMetadata & CustomMetadata;
175
- type Trace$1 = {
176
- trace_id: string;
177
- project_id: string;
178
- metadata: TraceMetadata;
179
- timestamps: {
180
- started_at: number;
181
- inserted_at: number;
182
- updated_at: number;
183
- };
184
- input?: TraceInput;
185
- output?: TraceOutput;
186
- contexts?: RAGChunk[];
187
- expected_output?: {
188
- value: string;
189
- };
190
- metrics?: {
191
- first_token_ms?: number | null;
192
- total_time_ms?: number | null;
193
- prompt_tokens?: number | null;
194
- completion_tokens?: number | null;
195
- total_cost?: number | null;
196
- tokens_estimated?: boolean | null;
197
- };
198
- error?: ErrorCapture$1 | null;
199
- indexing_md5s?: string[];
200
- events?: Event[];
201
- evaluations?: Evaluation[];
202
- spans: Span[];
203
- };
204
- type LLMModeTrace$1 = Omit<Trace$1, "timestamps" | "indexing_md5s"> & {
205
- timestamps: {
206
- started_at: string;
207
- inserted_at: string;
208
- updated_at: string;
209
- };
210
- ascii_tree: string;
211
- };
212
- type EvaluationStatus = "scheduled" | "in_progress" | "error" | "skipped" | "processed";
213
- type Evaluation = {
214
- evaluation_id: string;
215
- evaluator_id: string;
216
- span_id?: string | null;
217
- name: string;
218
- type?: string | null;
219
- is_guardrail?: boolean | null;
220
- status: EvaluationStatus;
221
- passed?: boolean | null;
222
- score?: number | null;
223
- label?: string | null;
224
- details?: string | null;
225
- error?: ErrorCapture$1 | null;
226
- retries?: number | null;
227
- timestamps: {
228
- inserted_at?: number | null;
229
- started_at?: number | null;
230
- finished_at?: number | null;
231
- updated_at?: number | null;
232
- };
233
- };
234
- type RESTEvaluation$1 = Omit<Evaluation, "evaluation_id" | "evaluator_id" | "status" | "timestamps" | "retries"> & {
235
- evaluation_id?: string | null;
236
- evaluator_id?: string | null;
237
- status?: "processed" | "skipped" | "error" | null;
238
- timestamps?: {
239
- started_at?: number | null;
240
- finished_at?: number | null;
241
- } | null;
242
- };
243
- type CollectorRESTParams = {
244
- trace_id?: string | null | undefined;
245
- spans: Span[];
246
- metadata?: {
247
- user_id?: string | null | undefined;
248
- thread_id?: string | null | undefined;
249
- customer_id?: string | null | undefined;
250
- labels?: string[] | null | undefined;
251
- sdk_version?: string | null | undefined;
252
- sdk_language?: string | null | undefined;
253
- } & CustomMetadata;
254
- expected_output?: string | null;
255
- evaluations?: RESTEvaluation$1[];
256
- };
257
- type Event = {
258
- event_id: string;
259
- event_type: string;
260
- project_id: string;
261
- metrics: Record<string, number>;
262
- event_details: Record<string, string>;
263
- trace_id: string;
264
- timestamps: {
265
- started_at: number;
266
- inserted_at: number;
267
- updated_at: number;
268
- };
269
- };
270
-
271
- type SnakeToCamelCase<S extends string> = S extends `${infer T}_${infer U}` ? `${T}${Capitalize<SnakeToCamelCase<U>>}` : S;
272
- type SnakeToCamelCaseNested<T> = T extends object ? T extends (infer U)[] ? U extends object ? {
273
- [K in keyof U as SnakeToCamelCase<K & string>]: SnakeToCamelCaseNested<U[K]>;
274
- }[] : T : {
275
- [K in keyof T as SnakeToCamelCase<K & string>]: SnakeToCamelCaseNested<T[K]>;
276
- } : T;
277
-
278
- type Trace = Trace$1;
279
- type LLMModeTrace = LLMModeTrace$1;
280
- type Metadata = SnakeToCamelCaseNested<Trace["metadata"]>;
281
- type ChatMessage = ChatMessage$1;
282
- type ChatRichContent = ChatRichContent$1;
283
- type SpanInputOutput = SnakeToCamelCaseNested<Exclude<SpanInputOutput$1, TypedValueChatMessages>> | (TypedValueChatMessages & {
284
- type: ChatMessage;
285
- });
286
- type ConvertServerSpan<T extends BaseSpan$1> = SnakeToCamelCaseNested<Omit<T, "input" | "output" | "error">> & {
287
- input?: SpanInputOutput | null;
288
- output?: SpanInputOutput | null;
289
- error?: T["error"] | NonNullable<unknown>;
290
- };
291
- type PendingSpan<T extends BaseSpan> = Omit<T, "traceId" | "timestamps"> & {
292
- timestamps: Omit<T["timestamps"], "finishedAt"> & {
293
- finishedAt?: number | null;
294
- };
295
- };
296
- type BaseSpan = ConvertServerSpan<BaseSpan$1>;
297
- type PendingBaseSpan = PendingSpan<BaseSpan>;
298
- type LLMSpan = ConvertServerSpan<Omit<LLMSpan$1, "vendor" | "model">> & {
299
- model: string;
300
- };
301
- type PendingLLMSpan = PendingSpan<LLMSpan>;
302
- type RAGSpan = ConvertServerSpan<RAGSpan$1>;
303
- type PendingRAGSpan = PendingSpan<RAGSpan>;
304
- type RESTEvaluation = SnakeToCamelCaseNested<Omit<RESTEvaluation$1, "error">> & {
305
- error?: RESTEvaluation$1["error"];
306
- };
307
- type ErrorCapture = ErrorCapture$1;
308
-
309
- declare function convertFromVercelAIMessages(messages: CoreMessage[]): ChatMessage[];
310
- declare const captureError: (error: unknown) => ErrorCapture$1;
311
- declare const autoconvertTypedValues: (value: unknown) => SpanInputOutput;
312
-
313
- export { type BaseSpan as B, type CollectorRESTParams as C, type ErrorCapture as E, type LLMSpan as L, type Metadata as M, type PendingBaseSpan as P, type RAGChunk as R, type Span as S, type Trace as T, type RESTEvaluation as a, type PendingLLMSpan as b, type PendingRAGSpan as c, type SpanTypes as d, type ChatMessage as e, type ChatRichContent as f, type RAGSpan as g, type SpanInputOutput as h, type LLMModeTrace as i, autoconvertTypedValues as j, captureError as k, convertFromVercelAIMessages as l };
package/dist/utils.d.mts DELETED
@@ -1,2 +0,0 @@
1
- import 'ai';
2
- export { j as autoconvertTypedValues, k as captureError, l as convertFromVercelAIMessages } from './utils-Cv-rUjJ1.mjs';
package/dist/utils.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import 'ai';
2
- export { j as autoconvertTypedValues, k as captureError, l as convertFromVercelAIMessages } from './utils-Cv-rUjJ1.js';