copilotkit 0.1.86__tar.gz → 0.1.87a0__tar.gz

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.
Files changed (27) hide show
  1. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/PKG-INFO +4 -4
  2. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/a2ui.py +1 -3
  3. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/pyproject.toml +2 -2
  4. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/README.md +0 -0
  5. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/__init__.py +0 -0
  6. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/action.py +0 -0
  7. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/agent.py +0 -0
  8. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/copilotkit_lg_middleware.py +0 -0
  9. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/crewai/__init__.py +0 -0
  10. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/crewai/copilotkit_integration.py +0 -0
  11. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/crewai/crewai_agent.py +0 -0
  12. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/crewai/crewai_sdk.py +0 -0
  13. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/exc.py +0 -0
  14. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/html.py +0 -0
  15. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/integrations/__init__.py +0 -0
  16. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/integrations/fastapi.py +0 -0
  17. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/langchain.py +0 -0
  18. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/langgraph.py +0 -0
  19. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/langgraph_agent.py +0 -0
  20. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/langgraph_agui_agent.py +0 -0
  21. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/logging.py +0 -0
  22. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/parameter.py +0 -0
  23. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/protocol.py +0 -0
  24. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/runloop.py +0 -0
  25. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/sdk.py +0 -0
  26. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/types.py +0 -0
  27. {copilotkit-0.1.86 → copilotkit-0.1.87a0}/copilotkit/utils.py +0 -0
@@ -1,8 +1,7 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: copilotkit
3
- Version: 0.1.86
3
+ Version: 0.1.87a0
4
4
  Summary: CopilotKit python SDK
5
- Home-page: https://copilotkit.ai
6
5
  License: MIT
7
6
  Keywords: copilot,copilotkit,langgraph,langchain,ai,langsmith,langserve
8
7
  Author: Markus Ecker
@@ -14,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
16
15
  Provides-Extra: crewai
17
- Requires-Dist: ag-ui-langgraph[fastapi] (>=0.0.29)
16
+ Requires-Dist: ag-ui-langgraph[fastapi] (==0.0.32a0)
18
17
  Requires-Dist: ag-ui-protocol (>=0.1.11)
19
18
  Requires-Dist: crewai (==0.118.0) ; extra == "crewai"
20
19
  Requires-Dist: fastapi (>=0.115.0,<1.0.0)
@@ -22,6 +21,7 @@ Requires-Dist: langchain (>=0.3.0)
22
21
  Requires-Dist: langgraph (>=0.3.25,<2)
23
22
  Requires-Dist: partialjson (>=0.0.8,<0.0.9)
24
23
  Requires-Dist: toml (>=0.10.2,<0.11.0)
24
+ Project-URL: Homepage, https://copilotkit.ai
25
25
  Project-URL: Repository, https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python
26
26
  Description-Content-Type: text/markdown
27
27
 
@@ -18,6 +18,7 @@ Usage:
18
18
  from __future__ import annotations
19
19
 
20
20
  import json
21
+ from pathlib import Path
21
22
  from typing import Any
22
23
 
23
24
 
@@ -241,6 +242,3 @@ Use ONLY these components with the specified props.
241
242
 
242
243
  {component_schema}
243
244
  """
244
-
245
-
246
- return None
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "copilotkit"
3
- version = "0.1.86"
3
+ version = "0.1.87-alpha.0"
4
4
  description = "CopilotKit python SDK"
5
5
  authors = ["Markus Ecker <markus.ecker@gmail.com>"]
6
6
  license = "MIT"
@@ -24,7 +24,7 @@ python = ">=3.10,<3.13"
24
24
  langgraph = { version = ">=0.3.25,<2" }
25
25
  langchain = { version = ">=0.3.0" }
26
26
  crewai = { version = "0.118.0", optional = true }
27
- ag-ui-langgraph = { version = ">=0.0.29", extras = ["fastapi"] }
27
+ ag-ui-langgraph = { version = "0.0.32a0", extras = ["fastapi"] }
28
28
  ag-ui-protocol = ">=0.1.11"
29
29
  fastapi = ">=0.115.0,<1.0.0"
30
30
  partialjson = "^0.0.8"
File without changes