pythonclaw 0.3.0__tar.gz → 0.3.1__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 (106) hide show
  1. {pythonclaw-0.3.0/pythonclaw.egg-info → pythonclaw-0.3.1}/PKG-INFO +3 -8
  2. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pyproject.toml +3 -9
  3. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/__init__.py +1 -1
  4. {pythonclaw-0.3.0 → pythonclaw-0.3.1/pythonclaw.egg-info}/PKG-INFO +3 -8
  5. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw.egg-info/requires.txt +2 -10
  6. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/LICENSE +0 -0
  7. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/MANIFEST.in +0 -0
  8. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/README.md +0 -0
  9. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/__main__.py +0 -0
  10. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/channels/discord_bot.py +0 -0
  11. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/channels/telegram_bot.py +0 -0
  12. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/config.py +0 -0
  13. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/__init__.py +0 -0
  14. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/agent.py +0 -0
  15. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/compaction.py +0 -0
  16. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/knowledge/rag.py +0 -0
  17. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/llm/anthropic_client.py +0 -0
  18. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/llm/base.py +0 -0
  19. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/llm/gemini_client.py +0 -0
  20. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/llm/openai_compatible.py +0 -0
  21. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/llm/response.py +0 -0
  22. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/memory/manager.py +0 -0
  23. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/memory/storage.py +0 -0
  24. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/persistent_agent.py +0 -0
  25. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/__init__.py +0 -0
  26. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/chunker.py +0 -0
  27. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/dense.py +0 -0
  28. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/fusion.py +0 -0
  29. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/reranker.py +0 -0
  30. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/retriever.py +0 -0
  31. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/retrieval/sparse.py +0 -0
  32. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/session_store.py +0 -0
  33. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/skill_loader.py +0 -0
  34. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/skillhub.py +0 -0
  35. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/tools.py +0 -0
  36. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/core/utils.py +0 -0
  37. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/daemon.py +0 -0
  38. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/init.py +0 -0
  39. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/main.py +0 -0
  40. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/onboard.py +0 -0
  41. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/scheduler/cron.py +0 -0
  42. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/scheduler/heartbeat.py +0 -0
  43. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/server.py +0 -0
  44. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/session_manager.py +0 -0
  45. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/persona/demo_persona.md +0 -0
  46. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/communication/CATEGORY.md +0 -0
  47. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/communication/email/SKILL.md +0 -0
  48. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/communication/email/send_email.py +0 -0
  49. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/CATEGORY.md +0 -0
  50. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/csv_analyzer/SKILL.md +0 -0
  51. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/csv_analyzer/analyze.py +0 -0
  52. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/finance/SKILL.md +0 -0
  53. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/finance/fetch_quote.py +0 -0
  54. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/news/SKILL.md +0 -0
  55. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/news/search_news.py +0 -0
  56. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/pdf_reader/SKILL.md +0 -0
  57. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/pdf_reader/read_pdf.py +0 -0
  58. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/scraper/SKILL.md +0 -0
  59. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/scraper/scrape.py +0 -0
  60. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/weather/SKILL.md +0 -0
  61. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/weather/weather.py +0 -0
  62. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/youtube/SKILL.md +0 -0
  63. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/data/youtube/youtube_info.py +0 -0
  64. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/CATEGORY.md +0 -0
  65. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/code_runner/SKILL.md +0 -0
  66. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/code_runner/run_code.py +0 -0
  67. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/github/SKILL.md +0 -0
  68. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/github/gh.py +0 -0
  69. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/http_request/SKILL.md +0 -0
  70. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/dev/http_request/request.py +0 -0
  71. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/google/CATEGORY.md +0 -0
  72. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/google/workspace/SKILL.md +0 -0
  73. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/meta/CATEGORY.md +0 -0
  74. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/meta/skill_creator/SKILL.md +0 -0
  75. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/CATEGORY.md +0 -0
  76. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/change_persona/SKILL.md +0 -0
  77. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/change_setting/SKILL.md +0 -0
  78. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/change_setting/update_config.py +0 -0
  79. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/change_soul/SKILL.md +0 -0
  80. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/onboarding/SKILL.md +0 -0
  81. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/onboarding/write_identity.py +0 -0
  82. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/random/SKILL.md +0 -0
  83. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/random/random_util.py +0 -0
  84. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/time/SKILL.md +0 -0
  85. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/system/time/time_util.py +0 -0
  86. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/text/CATEGORY.md +0 -0
  87. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/text/translator/SKILL.md +0 -0
  88. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/text/translator/translate.py +0 -0
  89. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/web/CATEGORY.md +0 -0
  90. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/skills/web/tavily/SKILL.md +0 -0
  91. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/templates/soul/SOUL.md +0 -0
  92. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/web/__init__.py +0 -0
  93. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/web/app.py +0 -0
  94. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/web/static/favicon.png +0 -0
  95. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/web/static/index.html +0 -0
  96. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw/web/static/logo.png +0 -0
  97. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw.egg-info/SOURCES.txt +0 -0
  98. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw.egg-info/dependency_links.txt +0 -0
  99. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw.egg-info/entry_points.txt +0 -0
  100. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/pythonclaw.egg-info/top_level.txt +0 -0
  101. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/setup.cfg +0 -0
  102. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/tests/test_compaction.py +0 -0
  103. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/tests/test_persistence.py +0 -0
  104. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/tests/test_rag_hybrid.py +0 -0
  105. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/tests/test_skills.py +0 -0
  106. {pythonclaw-0.3.0 → pythonclaw-0.3.1}/tests/test_soul.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonclaw
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: OpenClaw reimagined in pure Python — autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support.
5
5
  Author-email: Eric Wang <wangchen2007915@gmail.com>
6
6
  License: MIT
@@ -23,6 +23,8 @@ Requires-Python: >=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  Requires-Dist: openai
26
+ Requires-Dist: anthropic
27
+ Requires-Dist: google-generativeai
26
28
  Requires-Dist: python-telegram-bot[job-queue]>=20.0
27
29
  Requires-Dist: discord.py>=2.3
28
30
  Requires-Dist: apscheduler>=3.10
@@ -35,13 +37,6 @@ Requires-Dist: numpy>=1.24
35
37
  Requires-Dist: scikit-learn>=1.3
36
38
  Requires-Dist: beautifulsoup4
37
39
  Requires-Dist: requests
38
- Provides-Extra: all
39
- Requires-Dist: anthropic; extra == "all"
40
- Requires-Dist: google-generativeai; extra == "all"
41
- Provides-Extra: anthropic
42
- Requires-Dist: anthropic; extra == "anthropic"
43
- Provides-Extra: gemini
44
- Requires-Dist: google-generativeai; extra == "gemini"
45
40
  Dynamic: license-file
46
41
 
47
42
  <p align="center">
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pythonclaw"
7
- version = "0.3.0"
7
+ version = "0.3.1"
8
8
  description = "OpenClaw reimagined in pure Python — autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support."
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -27,6 +27,8 @@ classifiers = [
27
27
  ]
28
28
  dependencies = [
29
29
  "openai",
30
+ "anthropic",
31
+ "google-generativeai",
30
32
  "python-telegram-bot[job-queue]>=20.0",
31
33
  "discord.py>=2.3",
32
34
  "apscheduler>=3.10",
@@ -41,14 +43,6 @@ dependencies = [
41
43
  "requests",
42
44
  ]
43
45
 
44
- [project.optional-dependencies]
45
- all = [
46
- "anthropic",
47
- "google-generativeai",
48
- ]
49
- anthropic = ["anthropic"]
50
- gemini = ["google-generativeai"]
51
-
52
46
  [project.scripts]
53
47
  pythonclaw = "pythonclaw.main:main"
54
48
 
@@ -6,7 +6,7 @@ from .core.llm.base import LLMProvider
6
6
  from .core.llm.openai_compatible import OpenAICompatibleProvider
7
7
  from .init import init
8
8
 
9
- __version__ = "0.3.0"
9
+ __version__ = "0.3.1"
10
10
  __all__ = [
11
11
  "Agent",
12
12
  "LLMProvider",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pythonclaw
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: OpenClaw reimagined in pure Python — autonomous AI agent with memory, RAG, skills, web dashboard, and multi-channel support.
5
5
  Author-email: Eric Wang <wangchen2007915@gmail.com>
6
6
  License: MIT
@@ -23,6 +23,8 @@ Requires-Python: >=3.10
23
23
  Description-Content-Type: text/markdown
24
24
  License-File: LICENSE
25
25
  Requires-Dist: openai
26
+ Requires-Dist: anthropic
27
+ Requires-Dist: google-generativeai
26
28
  Requires-Dist: python-telegram-bot[job-queue]>=20.0
27
29
  Requires-Dist: discord.py>=2.3
28
30
  Requires-Dist: apscheduler>=3.10
@@ -35,13 +37,6 @@ Requires-Dist: numpy>=1.24
35
37
  Requires-Dist: scikit-learn>=1.3
36
38
  Requires-Dist: beautifulsoup4
37
39
  Requires-Dist: requests
38
- Provides-Extra: all
39
- Requires-Dist: anthropic; extra == "all"
40
- Requires-Dist: google-generativeai; extra == "all"
41
- Provides-Extra: anthropic
42
- Requires-Dist: anthropic; extra == "anthropic"
43
- Provides-Extra: gemini
44
- Requires-Dist: google-generativeai; extra == "gemini"
45
40
  Dynamic: license-file
46
41
 
47
42
  <p align="center">
@@ -1,4 +1,6 @@
1
1
  openai
2
+ anthropic
3
+ google-generativeai
2
4
  python-telegram-bot[job-queue]>=20.0
3
5
  discord.py>=2.3
4
6
  apscheduler>=3.10
@@ -11,13 +13,3 @@ numpy>=1.24
11
13
  scikit-learn>=1.3
12
14
  beautifulsoup4
13
15
  requests
14
-
15
- [all]
16
- anthropic
17
- google-generativeai
18
-
19
- [anthropic]
20
- anthropic
21
-
22
- [gemini]
23
- google-generativeai
File without changes
File without changes
File without changes
File without changes