copilotkit 0.1.75a1__tar.gz → 0.1.75a2__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.75a1 → copilotkit-0.1.75a2}/PKG-INFO +2 -4
  2. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/pyproject.toml +2 -2
  3. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/README.md +0 -0
  4. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/__init__.py +0 -0
  5. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/action.py +0 -0
  6. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/agent.py +0 -0
  7. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/copilotkit_lg_middleware.py +0 -0
  8. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/crewai/__init__.py +0 -0
  9. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/crewai/copilotkit_integration.py +0 -0
  10. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/crewai/crewai_agent.py +0 -0
  11. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/crewai/crewai_sdk.py +0 -0
  12. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/exc.py +0 -0
  13. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/html.py +0 -0
  14. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/integrations/__init__.py +0 -0
  15. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/integrations/fastapi.py +0 -0
  16. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/langchain.py +0 -0
  17. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/langgraph.py +0 -0
  18. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/langgraph_agent.py +0 -0
  19. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/langgraph_agui_agent.py +0 -0
  20. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/logging.py +0 -0
  21. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/parameter.py +0 -0
  22. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/protocol.py +0 -0
  23. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/runloop.py +0 -0
  24. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/sdk.py +0 -0
  25. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/types.py +0 -0
  26. {copilotkit-0.1.75a1 → copilotkit-0.1.75a2}/copilotkit/utils.py +0 -0
@@ -1,16 +1,14 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: copilotkit
3
- Version: 0.1.75a1
3
+ Version: 0.1.75a2
4
4
  Summary: CopilotKit python SDK
5
5
  License: MIT
6
6
  Keywords: copilot,copilotkit,langgraph,langchain,ai,langsmith,langserve
7
7
  Author: Markus Ecker
8
8
  Author-email: markus.ecker@gmail.com
9
- Requires-Python: >=3.10,<3.13
9
+ Requires-Python: >=3.12,<3.13
10
10
  Classifier: License :: OSI Approved :: MIT License
11
11
  Classifier: Programming Language :: Python :: 3
12
- Classifier: Programming Language :: Python :: 3.10
13
- Classifier: Programming Language :: Python :: 3.11
14
12
  Classifier: Programming Language :: Python :: 3.12
15
13
  Provides-Extra: crewai
16
14
  Requires-Dist: ag-ui-langgraph[fastapi] (>=0.0.22)
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "copilotkit"
3
- version = "0.1.75-alpha.1"
3
+ version = "0.1.75-alpha.2"
4
4
  description = "CopilotKit python SDK"
5
5
  authors = ["Markus Ecker <markus.ecker@gmail.com>"]
6
6
  license = "MIT"
@@ -10,7 +10,7 @@ repository = "https://github.com/CopilotKit/CopilotKit/tree/main/sdk-python"
10
10
  keywords = ["copilot", "copilotkit", "langgraph", "langchain", "ai", "langsmith", "langserve"]
11
11
 
12
12
  [tool.poetry.dependencies]
13
- python = ">=3.10,<3.13"
13
+ python = ">=3.12,<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 }
File without changes