@fluidframework/tree-agent-langchain 2.74.0 → 2.81.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 +8 -0
- package/eslint.config.mts +4 -4
- package/package.json +15 -15
- package/.eslintrc.cjs +0 -56
package/CHANGELOG.md
CHANGED
package/eslint.config.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
*
|
|
4
|
-
* To regenerate: pnpm tsx scripts/generate-flat-eslint-configs.ts --typescript
|
|
1
|
+
/*!
|
|
2
|
+
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
+
* Licensed under the MIT License.
|
|
5
4
|
*/
|
|
5
|
+
|
|
6
6
|
import type { Linter } from "eslint";
|
|
7
7
|
import { strict } from "../../../common/build/eslint-config-fluid/flat.mts";
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluidframework/tree-agent-langchain",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.81.0",
|
|
4
4
|
"description": "LangChain integration helpers for @fluidframework/tree-agent",
|
|
5
5
|
"homepage": "https://fluidframework.com",
|
|
6
6
|
"repository": {
|
|
@@ -69,22 +69,22 @@
|
|
|
69
69
|
"temp-directory": "nyc/.nyc_output"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@fluidframework/telemetry-utils": "~2.
|
|
73
|
-
"@fluidframework/tree-agent": "~2.
|
|
72
|
+
"@fluidframework/telemetry-utils": "~2.81.0",
|
|
73
|
+
"@fluidframework/tree-agent": "~2.81.0",
|
|
74
74
|
"@langchain/core": "^0.3.78",
|
|
75
75
|
"zod": "^3.25.32"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@arethetypeswrong/cli": "^0.
|
|
78
|
+
"@arethetypeswrong/cli": "^0.18.2",
|
|
79
79
|
"@biomejs/biome": "~1.9.3",
|
|
80
|
-
"@fluid-internal/mocha-test-setup": "~2.
|
|
81
|
-
"@fluid-tools/build-cli": "^0.
|
|
80
|
+
"@fluid-internal/mocha-test-setup": "~2.81.0",
|
|
81
|
+
"@fluid-tools/build-cli": "^0.63.0",
|
|
82
82
|
"@fluidframework/build-common": "^2.0.3",
|
|
83
|
-
"@fluidframework/build-tools": "^0.
|
|
84
|
-
"@fluidframework/core-utils": "~2.
|
|
85
|
-
"@fluidframework/eslint-config-fluid": "~2.
|
|
86
|
-
"@fluidframework/runtime-utils": "~2.
|
|
87
|
-
"@fluidframework/tree": "~2.
|
|
83
|
+
"@fluidframework/build-tools": "^0.63.0",
|
|
84
|
+
"@fluidframework/core-utils": "~2.81.0",
|
|
85
|
+
"@fluidframework/eslint-config-fluid": "~2.81.0",
|
|
86
|
+
"@fluidframework/runtime-utils": "~2.81.0",
|
|
87
|
+
"@fluidframework/tree": "~2.81.0",
|
|
88
88
|
"@langchain/anthropic": "^0.3.24",
|
|
89
89
|
"@langchain/google-genai": "^0.2.16",
|
|
90
90
|
"@langchain/openai": "^0.6.12",
|
|
@@ -92,16 +92,16 @@
|
|
|
92
92
|
"@types/mocha": "^10.0.10",
|
|
93
93
|
"@types/node": "^18.19.0",
|
|
94
94
|
"c8": "^10.1.3",
|
|
95
|
-
"concurrently": "^
|
|
95
|
+
"concurrently": "^9.2.1",
|
|
96
96
|
"copyfiles": "^2.4.1",
|
|
97
|
-
"cross-env": "^
|
|
98
|
-
"eslint": "~
|
|
97
|
+
"cross-env": "^10.1.0",
|
|
98
|
+
"eslint": "~9.39.1",
|
|
99
99
|
"eslint-config-prettier": "~10.1.8",
|
|
100
100
|
"jiti": "^2.6.1",
|
|
101
101
|
"mocha": "^10.8.2",
|
|
102
102
|
"mocha-multi-reporters": "^1.5.1",
|
|
103
103
|
"prettier": "~3.6.2",
|
|
104
|
-
"rimraf": "^
|
|
104
|
+
"rimraf": "^6.1.2",
|
|
105
105
|
"typescript": "~5.4.5"
|
|
106
106
|
},
|
|
107
107
|
"fluidBuild": {
|
package/.eslintrc.cjs
DELETED
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
/*!
|
|
2
|
-
* Copyright (c) Microsoft Corporation and contributors. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
module.exports = {
|
|
7
|
-
extends: [require.resolve("@fluidframework/eslint-config-fluid/strict"), "prettier"],
|
|
8
|
-
parserOptions: {
|
|
9
|
-
project: ["./tsconfig.json"],
|
|
10
|
-
},
|
|
11
|
-
rules: {
|
|
12
|
-
// Allow reaching into FluidFramework package paths that end with alpha, beta, legacy, or internal
|
|
13
|
-
"import-x/no-internal-modules": [
|
|
14
|
-
"error",
|
|
15
|
-
{
|
|
16
|
-
allow: [
|
|
17
|
-
"@fluidframework/*/alpha",
|
|
18
|
-
"@fluidframework/*/beta",
|
|
19
|
-
"@fluidframework/*/legacy",
|
|
20
|
-
"@fluidframework/*/internal",
|
|
21
|
-
],
|
|
22
|
-
},
|
|
23
|
-
],
|
|
24
|
-
},
|
|
25
|
-
overrides: [
|
|
26
|
-
{
|
|
27
|
-
files: ["src/test/**/*"],
|
|
28
|
-
parserOptions: {
|
|
29
|
-
project: ["./src/test/tsconfig.json"],
|
|
30
|
-
},
|
|
31
|
-
rules: {
|
|
32
|
-
// Test files can import from submodules for testing purposes
|
|
33
|
-
"import-x/no-internal-modules": [
|
|
34
|
-
"error",
|
|
35
|
-
{
|
|
36
|
-
allow: [
|
|
37
|
-
"*/index.js",
|
|
38
|
-
"@fluidframework/*/alpha",
|
|
39
|
-
"@fluidframework/*/beta",
|
|
40
|
-
"@fluidframework/*/legacy",
|
|
41
|
-
"@fluidframework/*/internal",
|
|
42
|
-
],
|
|
43
|
-
},
|
|
44
|
-
],
|
|
45
|
-
// Allow unresolved for intentionally reaching into alpha/internal of other packages during integration tests
|
|
46
|
-
"import-x/no-unresolved": "off",
|
|
47
|
-
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
48
|
-
"@typescript-eslint/no-unsafe-call": "off",
|
|
49
|
-
"@typescript-eslint/no-unsafe-member-access": "off",
|
|
50
|
-
"@typescript-eslint/no-unsafe-return": "off",
|
|
51
|
-
"@typescript-eslint/no-unsafe-argument": "off",
|
|
52
|
-
"@typescript-eslint/strict-boolean-expressions": "off",
|
|
53
|
-
},
|
|
54
|
-
},
|
|
55
|
-
],
|
|
56
|
-
};
|