@copilotkit/react-textarea 1.4.1-pre.6 → 1.4.1
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 +49 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# ui
|
|
2
2
|
|
|
3
|
+
## 1.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 1721cbd: lower case copilotkit property
|
|
8
|
+
- 1721cbd: add zod conversion
|
|
9
|
+
- 8d0144f: bump
|
|
10
|
+
- 8d0144f: bump
|
|
11
|
+
- 8d0144f: bump
|
|
12
|
+
- e16d95e: New prerelease
|
|
13
|
+
- 1721cbd: Add convertActionsToDynamicStructuredTools to sdk-js
|
|
14
|
+
- CopilotKit Core:
|
|
15
|
+
|
|
16
|
+
- Improved error messages and overall logs
|
|
17
|
+
- `useCopilotAction.renderAndAwait` renamed to `.renderAndAwaitForResponse` (backwards compatible, will be deprecated in the future)
|
|
18
|
+
- Improved scrolling behavior. It is now possible to scroll up during LLM response generation
|
|
19
|
+
- Added Azure OpenAI integration
|
|
20
|
+
- Updated interfaces for better developer ergonomics
|
|
21
|
+
|
|
22
|
+
CoAgents:
|
|
23
|
+
|
|
24
|
+
- Renamed `remoteActions` to `remoteEndpoints` (backwards compatible, will be deprecated in the future)
|
|
25
|
+
- Support for LangGraph Platform in Remote Endpoints
|
|
26
|
+
- LangGraph JS Support for CoAgents (locally via `langgraph dev`, `langgraph up` or deployed to LangGraph Platform)
|
|
27
|
+
- Improved LangSmith integration - requests made through CoAgents will now surface in LangSmith
|
|
28
|
+
- Enhanced state management and message handling
|
|
29
|
+
|
|
30
|
+
CopilotKid Back-end SDK:
|
|
31
|
+
|
|
32
|
+
- Released a whole-new `@copilotkit/sdk-js` for building agents with LangGraph JS Support
|
|
33
|
+
|
|
34
|
+
- 8d0144f: bump
|
|
35
|
+
- 8d0144f: bump
|
|
36
|
+
- fef1b74: fix assistant message CSS and propagate actions to LG JS
|
|
37
|
+
- Updated dependencies [1721cbd]
|
|
38
|
+
- Updated dependencies [1721cbd]
|
|
39
|
+
- Updated dependencies [8d0144f]
|
|
40
|
+
- Updated dependencies [8d0144f]
|
|
41
|
+
- Updated dependencies [8d0144f]
|
|
42
|
+
- Updated dependencies [e16d95e]
|
|
43
|
+
- Updated dependencies [1721cbd]
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- Updated dependencies [8d0144f]
|
|
46
|
+
- Updated dependencies [8d0144f]
|
|
47
|
+
- Updated dependencies [fef1b74]
|
|
48
|
+
- @copilotkit/react-core@1.4.1
|
|
49
|
+
- @copilotkit/runtime-client-gql@1.4.1
|
|
50
|
+
- @copilotkit/shared@1.4.1
|
|
51
|
+
|
|
3
52
|
## 1.4.1-pre.6
|
|
4
53
|
|
|
5
54
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"version": "1.4.1
|
|
12
|
+
"version": "1.4.1",
|
|
13
13
|
"sideEffects": [
|
|
14
14
|
"**/*.css"
|
|
15
15
|
],
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"ts-jest": "^29.1.1",
|
|
44
44
|
"tsup": "^6.7.0",
|
|
45
45
|
"typescript": "^5.2.3",
|
|
46
|
-
"eslint-config-custom": "1.4.1
|
|
47
|
-
"tailwind-config": "1.4.1
|
|
48
|
-
"tsconfig": "1.4.1
|
|
46
|
+
"eslint-config-custom": "1.4.1",
|
|
47
|
+
"tailwind-config": "1.4.1",
|
|
48
|
+
"tsconfig": "1.4.1"
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@emotion/css": "^11.11.2",
|
|
@@ -67,9 +67,9 @@
|
|
|
67
67
|
"slate-history": "^0.93.0",
|
|
68
68
|
"slate-react": "^0.98.1",
|
|
69
69
|
"tailwind-merge": "^1.13.2",
|
|
70
|
-
"@copilotkit/react-core": "1.4.1
|
|
71
|
-
"@copilotkit/runtime-client-gql": "1.4.1
|
|
72
|
-
"@copilotkit/shared": "1.4.1
|
|
70
|
+
"@copilotkit/react-core": "1.4.1",
|
|
71
|
+
"@copilotkit/runtime-client-gql": "1.4.1",
|
|
72
|
+
"@copilotkit/shared": "1.4.1"
|
|
73
73
|
},
|
|
74
74
|
"keywords": [
|
|
75
75
|
"copilotkit",
|