@or-sdk/agents 2.10.1-beta.3020.0 → 2.11.0
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/CHANGELOG.md +9 -0
- package/package.json +3 -2
- package/src/Agents.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.11.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/agents@2.10.0...@or-sdk/agents@2.11.0) (2024-10-15)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **Agents:** add webSearch to types and htmlToPassages method (AG-287) ([20fb7fd](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/commit/20fb7fdd4a0487270db209563525f9939ed8a466))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [2.10.0](https://gitlab.internal.onereach.io/onereach/platform/or-sdk-next/compare/@or-sdk/agents@2.9.1...@or-sdk/agents@2.10.0) (2024-10-09)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/agents",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -42,5 +42,6 @@
|
|
|
42
42
|
},
|
|
43
43
|
"publishConfig": {
|
|
44
44
|
"access": "public"
|
|
45
|
-
}
|
|
45
|
+
},
|
|
46
|
+
"gitHead": "74e03bbf0393254784bc7fa2bbf24564e10b8296"
|
|
46
47
|
}
|
package/src/Agents.ts
CHANGED
|
@@ -331,7 +331,7 @@ export class Agents extends Base {
|
|
|
331
331
|
|
|
332
332
|
/**
|
|
333
333
|
* Get markdown for passed url
|
|
334
|
-
* @param url - The
|
|
334
|
+
* @param url - The web page url.
|
|
335
335
|
* @param question - The question to search.
|
|
336
336
|
* @param options - The API call options.
|
|
337
337
|
* @returns The markdown page passages.
|