Aiden Cline 3 месяцев назад
Родитель
Сommit
85974e9acd
1 измененных файлов с 6 добавлено и 2 удалено
  1. 6 2
      packages/sdk/js/src/gen/types.gen.ts

+ 6 - 2
packages/sdk/js/src/gen/types.gen.ts

@@ -1317,6 +1317,10 @@ export type Config = {
      * Enable the batch tool
      */
     batch_tool?: boolean
+    /**
+     * Enable OpenTelemetry spans for AI SDK calls (using the 'experimental_telemetry' flag)
+     */
+    openTelemetry?: boolean
     /**
      * Tools that should only be available to primary agents.
      */
@@ -1816,9 +1820,9 @@ export type PtyConnectData = {
 
 export type PtyConnectErrors = {
   /**
-   * Session not found
+   * Not found
    */
-  404: boolean
+  404: NotFoundError
 }
 
 export type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]