youclaw 4.6.0__tar.gz → 4.6.2__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.
- {youclaw-4.6.0/src/youclaw.egg-info → youclaw-4.6.2}/PKG-INFO +2 -1
- {youclaw-4.6.0 → youclaw-4.6.2}/pyproject.toml +2 -1
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/config.py +4 -2
- {youclaw-4.6.0 → youclaw-4.6.2/src/youclaw.egg-info}/PKG-INFO +2 -1
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw.egg-info/requires.txt +1 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/LICENSE +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/MANIFEST.in +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/README.md +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/setup.cfg +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/__init__.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/bot.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/cli.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/commands.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/core_skills.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/dashboard.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/discord_handler.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/env_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/main.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/memory_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/ollama_client.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/personality_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/scheduler_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/search_client.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/skills_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/telegram_handler.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw/vector_manager.py +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw.egg-info/SOURCES.txt +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw.egg-info/dependency_links.txt +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw.egg-info/entry_points.txt +0 -0
- {youclaw-4.6.0 → youclaw-4.6.2}/src/youclaw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: youclaw
|
|
3
|
-
Version: 4.6.
|
|
3
|
+
Version: 4.6.2
|
|
4
4
|
Summary: Your Personal AI Assistant - Universal Neural Core
|
|
5
5
|
Author-email: Imran <imran@example.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -19,6 +19,7 @@ Requires-Dist: python-telegram-bot
|
|
|
19
19
|
Requires-Dist: discord.py
|
|
20
20
|
Requires-Dist: httpx
|
|
21
21
|
Requires-Dist: beautifulsoup4
|
|
22
|
+
Requires-Dist: sqlalchemy
|
|
22
23
|
|
|
23
24
|
# 🦞 YouClaw - Your Personal AI Assistant
|
|
24
25
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "youclaw"
|
|
7
|
-
version = "4.6.
|
|
7
|
+
version = "4.6.2"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Imran", email="imran@example.com" },
|
|
10
10
|
]
|
|
@@ -27,6 +27,7 @@ dependencies = [
|
|
|
27
27
|
"discord.py",
|
|
28
28
|
"httpx",
|
|
29
29
|
"beautifulsoup4",
|
|
30
|
+
"sqlalchemy",
|
|
30
31
|
]
|
|
31
32
|
|
|
32
33
|
[project.scripts]
|
|
@@ -41,7 +41,8 @@ class DiscordConfig:
|
|
|
41
41
|
def __post_init__(self):
|
|
42
42
|
"""Validate configuration"""
|
|
43
43
|
if self.enabled and not self.token:
|
|
44
|
-
|
|
44
|
+
logger.warning("DISCORD_BOT_TOKEN not found. Disabling Discord integration.")
|
|
45
|
+
self.enabled = False
|
|
45
46
|
|
|
46
47
|
|
|
47
48
|
@dataclass
|
|
@@ -53,7 +54,8 @@ class TelegramConfig:
|
|
|
53
54
|
def __post_init__(self):
|
|
54
55
|
"""Validate configuration"""
|
|
55
56
|
if self.enabled and not self.token:
|
|
56
|
-
|
|
57
|
+
logger.warning("TELEGRAM_BOT_TOKEN not found. Disabling Telegram integration.")
|
|
58
|
+
self.enabled = False
|
|
57
59
|
|
|
58
60
|
|
|
59
61
|
@dataclass
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: youclaw
|
|
3
|
-
Version: 4.6.
|
|
3
|
+
Version: 4.6.2
|
|
4
4
|
Summary: Your Personal AI Assistant - Universal Neural Core
|
|
5
5
|
Author-email: Imran <imran@example.com>
|
|
6
6
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -19,6 +19,7 @@ Requires-Dist: python-telegram-bot
|
|
|
19
19
|
Requires-Dist: discord.py
|
|
20
20
|
Requires-Dist: httpx
|
|
21
21
|
Requires-Dist: beautifulsoup4
|
|
22
|
+
Requires-Dist: sqlalchemy
|
|
22
23
|
|
|
23
24
|
# 🦞 YouClaw - Your Personal AI Assistant
|
|
24
25
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|