copilotkit 0.1.75a8__tar.gz → 0.1.77__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 (26) hide show
  1. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/PKG-INFO +2 -2
  2. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/copilotkit_lg_middleware.py +1 -1
  3. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/pyproject.toml +2 -2
  4. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/README.md +0 -0
  5. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/__init__.py +0 -0
  6. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/action.py +0 -0
  7. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/agent.py +0 -0
  8. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/crewai/__init__.py +0 -0
  9. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/crewai/copilotkit_integration.py +0 -0
  10. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/crewai/crewai_agent.py +0 -0
  11. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/crewai/crewai_sdk.py +0 -0
  12. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/exc.py +0 -0
  13. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/html.py +0 -0
  14. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/integrations/__init__.py +0 -0
  15. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/integrations/fastapi.py +0 -0
  16. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/langchain.py +0 -0
  17. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/langgraph.py +0 -0
  18. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/langgraph_agent.py +0 -0
  19. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/langgraph_agui_agent.py +0 -0
  20. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/logging.py +0 -0
  21. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/parameter.py +0 -0
  22. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/protocol.py +0 -0
  23. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/runloop.py +0 -0
  24. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/sdk.py +0 -0
  25. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/types.py +0 -0
  26. {copilotkit-0.1.75a8 → copilotkit-0.1.77}/copilotkit/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: copilotkit
3
- Version: 0.1.75a8
3
+ Version: 0.1.77
4
4
  Summary: CopilotKit python SDK
5
5
  License: MIT
6
6
  Keywords: copilot,copilotkit,langgraph,langchain,ai,langsmith,langserve
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
15
  Provides-Extra: crewai
16
- Requires-Dist: ag-ui-langgraph[fastapi] (>=0.0.22)
16
+ Requires-Dist: ag-ui-langgraph[fastapi] (>=0.0.24)
17
17
  Requires-Dist: crewai (==0.118.0) ; extra == "crewai"
18
18
  Requires-Dist: fastapi (>=0.115.0,<0.116.0)
19
19
  Requires-Dist: langchain (>=0.3.0)
@@ -4,7 +4,7 @@ CopilotKit Middleware for LangGraph agents.
4
4
  Works with any agent (prebuilt or custom).
5
5
 
6
6
  Example:
7
- from langchain.agents import create_agent
7
+ from langgraph.prebuilt import create_agent
8
8
  from copilotkit import CopilotKitMiddleware
9
9
 
10
10
  agent = create_agent(
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "copilotkit"
3
- version = "0.1.75-alpha.8"
3
+ version = "0.1.77"
4
4
  description = "CopilotKit python SDK"
5
5
  authors = ["Markus Ecker <markus.ecker@gmail.com>"]
6
6
  license = "MIT"
@@ -14,7 +14,7 @@ python = ">=3.10,<3.13"
14
14
  langgraph = {version = ">=0.3.25,<1.1.0"}
15
15
  langchain = {version = ">=0.3.0"}
16
16
  crewai = { version = "0.118.0", optional = true }
17
- ag-ui-langgraph = { version = ">=0.0.22", extras = ["fastapi"] }
17
+ ag-ui-langgraph = { version = ">=0.0.24", extras = ["fastapi"] }
18
18
  fastapi = "^0.115.0"
19
19
  partialjson = "^0.0.8"
20
20
  toml = "^0.10.2"
File without changes