@fluidframework/tree-agent-langchain 2.80.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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # @fluidframework/tree-agent-langchain
2
2
 
3
+ ## 2.81.0
4
+
5
+ Dependency updates only.
6
+
3
7
  ## 2.80.0
4
8
 
5
9
  Dependency updates only.
package/eslint.config.mts CHANGED
@@ -1,8 +1,8 @@
1
- /* eslint-disable */
2
- /**
3
- * GENERATED FILE - DO NOT EDIT DIRECTLY.
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.80.0",
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.80.0",
73
- "@fluidframework/tree-agent": "~2.80.0",
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
78
  "@arethetypeswrong/cli": "^0.18.2",
79
79
  "@biomejs/biome": "~1.9.3",
80
- "@fluid-internal/mocha-test-setup": "~2.80.0",
81
- "@fluid-tools/build-cli": "^0.62.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.62.0",
84
- "@fluidframework/core-utils": "~2.80.0",
85
- "@fluidframework/eslint-config-fluid": "~2.80.0",
86
- "@fluidframework/runtime-utils": "~2.80.0",
87
- "@fluidframework/tree": "~2.80.0",
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",
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
- };