We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 864c098 commit 85974e9Copy full SHA for 85974e9
1 file changed
packages/sdk/js/src/gen/types.gen.ts
@@ -1317,6 +1317,10 @@ export type Config = {
1317
* Enable the batch tool
1318
*/
1319
batch_tool?: boolean
1320
+ /**
1321
+ * Enable OpenTelemetry spans for AI SDK calls (using the 'experimental_telemetry' flag)
1322
+ */
1323
+ openTelemetry?: boolean
1324
/**
1325
* Tools that should only be available to primary agents.
1326
@@ -1816,9 +1820,9 @@ export type PtyConnectData = {
1816
1820
1817
1821
export type PtyConnectErrors = {
1818
1822
1819
- * Session not found
1823
+ * Not found
1824
- 404: boolean
1825
+ 404: NotFoundError
1826
}
1827
1828
export type PtyConnectError = PtyConnectErrors[keyof PtyConnectErrors]
0 commit comments