@orq-ai/node 4.10.20 → 4.10.21

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/jsr.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  {
4
4
  "name": "@orq-ai/node",
5
- "version": "4.10.20",
5
+ "version": "4.10.21",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
8
  "./models/errors": "./src/models/errors/index.ts",
package/lib/config.d.ts CHANGED
@@ -31,8 +31,8 @@ export declare function serverURLFromOptions(options: SDKOptions): URL | null;
31
31
  export declare const SDK_METADATA: {
32
32
  readonly language: "typescript";
33
33
  readonly openapiDocVersion: "2.0";
34
- readonly sdkVersion: "4.10.20";
34
+ readonly sdkVersion: "4.10.21";
35
35
  readonly genVersion: "2.903.5";
36
- readonly userAgent: "speakeasy-sdk/typescript 4.10.20 2.903.5 2.0 @orq-ai/node";
36
+ readonly userAgent: "speakeasy-sdk/typescript 4.10.21 2.903.5 2.0 @orq-ai/node";
37
37
  };
38
38
  //# sourceMappingURL=config.d.ts.map
package/lib/config.js CHANGED
@@ -28,8 +28,8 @@ function serverURLFromOptions(options) {
28
28
  exports.SDK_METADATA = {
29
29
  language: "typescript",
30
30
  openapiDocVersion: "2.0",
31
- sdkVersion: "4.10.20",
31
+ sdkVersion: "4.10.21",
32
32
  genVersion: "2.903.5",
33
- userAgent: "speakeasy-sdk/typescript 4.10.20 2.903.5 2.0 @orq-ai/node",
33
+ userAgent: "speakeasy-sdk/typescript 4.10.21 2.903.5 2.0 @orq-ai/node",
34
34
  };
35
35
  //# sourceMappingURL=config.js.map
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@orq-ai/node",
3
- "version": "4.10.20",
3
+ "version": "4.10.21",
4
4
  "author": "Orq",
5
5
  "exports": {
6
6
  ".": {
7
- "import": "./index.js",
8
7
  "require": "./index.js",
9
- "types": "./index.d.ts"
8
+ "types": "./index.d.ts",
9
+ "import": "./index.js"
10
10
  },
11
11
  "./*": "./*",
12
12
  "./langchain": {
package/sdk/feedback.d.ts CHANGED
@@ -5,10 +5,10 @@ export declare class Feedback extends ClientSDK {
5
5
  createEvaluation(request?: operations.PostV2FeedbackEvaluationRequestBody | undefined, options?: RequestOptions): Promise<void>;
6
6
  remove(request?: operations.PostV2FeedbackRemoveRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackRemoveResponseBody>;
7
7
  /**
8
- * Create schedule
8
+ * Create rerank
9
9
  *
10
10
  * @remarks
11
- * Creates a schedule that runs the agent on a recurring or one-off cadence. The minimum firing interval is 1 hour for `cron` and `interval`; `once` schedules are exempt.
11
+ * Rerank a list of documents based on their relevance to a query.
12
12
  */
13
13
  create(request?: operations.PostV2FeedbackRequestBody | undefined, options?: RequestOptions): Promise<operations.PostV2FeedbackResponseBody>;
14
14
  }
package/sdk/feedback.js CHANGED
@@ -21,10 +21,10 @@ class Feedback extends sdks_js_1.ClientSDK {
21
21
  return (0, fp_js_1.unwrapAsync)((0, feedbackRemove_js_1.feedbackRemove)(this, request, options));
22
22
  }
23
23
  /**
24
- * Create schedule
24
+ * Create rerank
25
25
  *
26
26
  * @remarks
27
- * Creates a schedule that runs the agent on a recurring or one-off cadence. The minimum firing interval is 1 hour for `cron` and `interval`; `once` schedules are exempt.
27
+ * Rerank a list of documents based on their relevance to a query.
28
28
  */
29
29
  async create(request, options) {
30
30
  return (0, fp_js_1.unwrapAsync)((0, feedbackCreate_js_1.feedbackCreate)(this, request, options));
package/src/lib/config.ts CHANGED
@@ -58,7 +58,7 @@ export function serverURLFromOptions(options: SDKOptions): URL | null {
58
58
  export const SDK_METADATA = {
59
59
  language: "typescript",
60
60
  openapiDocVersion: "2.0",
61
- sdkVersion: "4.10.20",
61
+ sdkVersion: "4.10.21",
62
62
  genVersion: "2.903.5",
63
- userAgent: "speakeasy-sdk/typescript 4.10.20 2.903.5 2.0 @orq-ai/node",
63
+ userAgent: "speakeasy-sdk/typescript 4.10.21 2.903.5 2.0 @orq-ai/node",
64
64
  } as const;
@@ -45,10 +45,10 @@ export class Feedback extends ClientSDK {
45
45
  }
46
46
 
47
47
  /**
48
- * Create schedule
48
+ * Create rerank
49
49
  *
50
50
  * @remarks
51
- * Creates a schedule that runs the agent on a recurring or one-off cadence. The minimum firing interval is 1 hour for `cron` and `interval`; `once` schedules are exempt.
51
+ * Rerank a list of documents based on their relevance to a query.
52
52
  */
53
53
  async create(
54
54
  request?: operations.PostV2FeedbackRequestBody | undefined,