@athenaintel/sdk 4.3.685 → 4.3.686

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.
@@ -43,8 +43,8 @@ function normalizeClientOptions(options) {
43
43
  const headers = (0, headers_js_1.mergeHeaders)({
44
44
  "X-Fern-Language": "JavaScript",
45
45
  "X-Fern-SDK-Name": "@athenaintel/sdk",
46
- "X-Fern-SDK-Version": "4.3.685",
47
- "User-Agent": "@athenaintel/sdk/4.3.685",
46
+ "X-Fern-SDK-Version": "4.3.686",
47
+ "User-Agent": "@athenaintel/sdk/4.3.686",
48
48
  "X-Fern-Runtime": core.RUNTIME.type,
49
49
  "X-Fern-Runtime-Version": core.RUNTIME.version,
50
50
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -37,8 +37,6 @@ export declare class AopClient {
37
37
  /**
38
38
  * Start execution of an Agent Operating Procedure (AOP) asset asynchronously. Returns immediately with a thread_id for tracking execution progress without waiting for completion.
39
39
  *
40
- * **Important:** This endpoint returns immediately and does NOT wait for the AOP to finish. You must poll the thread status endpoint (GET /api/v0/threads/{thread_id}/status) in a loop until the status is "completed" or "failed". See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
41
- *
42
40
  * @param {AthenaIntelligence.AopExecuteRequestIn} request
43
41
  * @param {AopClient.RequestOptions} requestOptions - Request-specific configuration.
44
42
  *
@@ -148,8 +148,6 @@ class AopClient {
148
148
  /**
149
149
  * Start execution of an Agent Operating Procedure (AOP) asset asynchronously. Returns immediately with a thread_id for tracking execution progress without waiting for completion.
150
150
  *
151
- * **Important:** This endpoint returns immediately and does NOT wait for the AOP to finish. You must poll the thread status endpoint (GET /api/v0/threads/{thread_id}/status) in a loop until the status is "completed" or "failed". See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
152
- *
153
151
  * @param {AthenaIntelligence.AopExecuteRequestIn} request
154
152
  * @param {AopClient.RequestOptions} requestOptions - Request-specific configuration.
155
153
  *
@@ -48,8 +48,6 @@ export declare class ThreadsClient {
48
48
  /**
49
49
  * Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
50
50
  *
51
- * **Polling pattern:** When used with the async AOP execution endpoint, call this endpoint repeatedly in a loop with a 5-second interval until the status is "completed" or "failed". Always implement a timeout to avoid polling indefinitely. See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
52
- *
53
51
  * @param {string} thread_id - The unique thread ID to check status for
54
52
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
55
53
  *
@@ -219,8 +219,6 @@ class ThreadsClient {
219
219
  /**
220
220
  * Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
221
221
  *
222
- * **Polling pattern:** When used with the async AOP execution endpoint, call this endpoint repeatedly in a loop with a 5-second interval until the status is "completed" or "failed". Always implement a timeout to avoid polling indefinitely. See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
223
- *
224
222
  * @param {string} thread_id - The unique thread ID to check status for
225
223
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
226
224
  *
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.685";
1
+ export declare const SDK_VERSION = "4.3.686";
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SDK_VERSION = void 0;
4
- exports.SDK_VERSION = "4.3.685";
4
+ exports.SDK_VERSION = "4.3.686";
@@ -6,8 +6,8 @@ export function normalizeClientOptions(options) {
6
6
  const headers = mergeHeaders({
7
7
  "X-Fern-Language": "JavaScript",
8
8
  "X-Fern-SDK-Name": "@athenaintel/sdk",
9
- "X-Fern-SDK-Version": "4.3.685",
10
- "User-Agent": "@athenaintel/sdk/4.3.685",
9
+ "X-Fern-SDK-Version": "4.3.686",
10
+ "User-Agent": "@athenaintel/sdk/4.3.686",
11
11
  "X-Fern-Runtime": core.RUNTIME.type,
12
12
  "X-Fern-Runtime-Version": core.RUNTIME.version,
13
13
  }, options === null || options === void 0 ? void 0 : options.headers);
@@ -37,8 +37,6 @@ export declare class AopClient {
37
37
  /**
38
38
  * Start execution of an Agent Operating Procedure (AOP) asset asynchronously. Returns immediately with a thread_id for tracking execution progress without waiting for completion.
39
39
  *
40
- * **Important:** This endpoint returns immediately and does NOT wait for the AOP to finish. You must poll the thread status endpoint (GET /api/v0/threads/{thread_id}/status) in a loop until the status is "completed" or "failed". See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
41
- *
42
40
  * @param {AthenaIntelligence.AopExecuteRequestIn} request
43
41
  * @param {AopClient.RequestOptions} requestOptions - Request-specific configuration.
44
42
  *
@@ -112,8 +112,6 @@ export class AopClient {
112
112
  /**
113
113
  * Start execution of an Agent Operating Procedure (AOP) asset asynchronously. Returns immediately with a thread_id for tracking execution progress without waiting for completion.
114
114
  *
115
- * **Important:** This endpoint returns immediately and does NOT wait for the AOP to finish. You must poll the thread status endpoint (GET /api/v0/threads/{thread_id}/status) in a loop until the status is "completed" or "failed". See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
116
- *
117
115
  * @param {AthenaIntelligence.AopExecuteRequestIn} request
118
116
  * @param {AopClient.RequestOptions} requestOptions - Request-specific configuration.
119
117
  *
@@ -48,8 +48,6 @@ export declare class ThreadsClient {
48
48
  /**
49
49
  * Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
50
50
  *
51
- * **Polling pattern:** When used with the async AOP execution endpoint, call this endpoint repeatedly in a loop with a 5-second interval until the status is "completed" or "failed". Always implement a timeout to avoid polling indefinitely. See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
52
- *
53
51
  * @param {string} thread_id - The unique thread ID to check status for
54
52
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
55
53
  *
@@ -183,8 +183,6 @@ export class ThreadsClient {
183
183
  /**
184
184
  * Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
185
185
  *
186
- * **Polling pattern:** When used with the async AOP execution endpoint, call this endpoint repeatedly in a loop with a 5-second interval until the status is "completed" or "failed". Always implement a timeout to avoid polling indefinitely. See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
187
- *
188
186
  * @param {string} thread_id - The unique thread ID to check status for
189
187
  * @param {ThreadsClient.RequestOptions} requestOptions - Request-specific configuration.
190
188
  *
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "4.3.685";
1
+ export declare const SDK_VERSION = "4.3.686";
@@ -1 +1 @@
1
- export const SDK_VERSION = "4.3.685";
1
+ export const SDK_VERSION = "4.3.686";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@athenaintel/sdk",
3
- "version": "4.3.685",
3
+ "version": "4.3.686",
4
4
  "private": false,
5
5
  "repository": "github:Athena-Intel/athena-typescript",
6
6
  "type": "commonjs",
package/reference.md CHANGED
@@ -167,8 +167,6 @@ await client.aop.execute({
167
167
  <dd>
168
168
 
169
169
  Start execution of an Agent Operating Procedure (AOP) asset asynchronously. Returns immediately with a thread_id for tracking execution progress without waiting for completion.
170
-
171
- **Important:** This endpoint returns immediately and does NOT wait for the AOP to finish. You must poll the thread status endpoint (GET /api/v0/threads/{thread_id}/status) in a loop until the status is "completed" or "failed". See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
172
170
  </dd>
173
171
  </dl>
174
172
  </dd>
@@ -1360,8 +1358,6 @@ await client.threads.batchStop({
1360
1358
  <dd>
1361
1359
 
1362
1360
  Check the status of a thread execution by thread ID. Returns thread status and associated conversation asset information for tracking progress.
1363
-
1364
- **Polling pattern:** When used with the async AOP execution endpoint, call this endpoint repeatedly in a loop with a 5-second interval until the status is "completed" or "failed". Always implement a timeout to avoid polling indefinitely. See the Long-Running AOP Execution guide in Python Guides for the complete pattern.
1365
1361
  </dd>
1366
1362
  </dl>
1367
1363
  </dd>