youclaw 4.6.5__tar.gz → 4.6.6__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 (30) hide show
  1. {youclaw-4.6.5/src/youclaw.egg-info → youclaw-4.6.6}/PKG-INFO +2 -1
  2. {youclaw-4.6.5 → youclaw-4.6.6}/pyproject.toml +2 -1
  3. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/memory_manager.py +2 -2
  4. {youclaw-4.6.5 → youclaw-4.6.6/src/youclaw.egg-info}/PKG-INFO +2 -1
  5. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw.egg-info/requires.txt +1 -0
  6. {youclaw-4.6.5 → youclaw-4.6.6}/LICENSE +0 -0
  7. {youclaw-4.6.5 → youclaw-4.6.6}/MANIFEST.in +0 -0
  8. {youclaw-4.6.5 → youclaw-4.6.6}/README.md +0 -0
  9. {youclaw-4.6.5 → youclaw-4.6.6}/setup.cfg +0 -0
  10. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/__init__.py +0 -0
  11. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/bot.py +0 -0
  12. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/cli.py +0 -0
  13. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/commands.py +0 -0
  14. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/config.py +0 -0
  15. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/core_skills.py +0 -0
  16. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/dashboard.py +0 -0
  17. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/discord_handler.py +0 -0
  18. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/env_manager.py +0 -0
  19. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/main.py +0 -0
  20. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/ollama_client.py +0 -0
  21. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/personality_manager.py +0 -0
  22. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/scheduler_manager.py +0 -0
  23. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/search_client.py +0 -0
  24. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/skills_manager.py +0 -0
  25. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/telegram_handler.py +0 -0
  26. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw/vector_manager.py +0 -0
  27. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw.egg-info/SOURCES.txt +0 -0
  28. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw.egg-info/dependency_links.txt +0 -0
  29. {youclaw-4.6.5 → youclaw-4.6.6}/src/youclaw.egg-info/entry_points.txt +0 -0
  30. {youclaw-4.6.5 → youclaw-4.6.6}/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.5
3
+ Version: 4.6.6
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
@@ -21,6 +21,7 @@ Requires-Dist: httpx
21
21
  Requires-Dist: beautifulsoup4
22
22
  Requires-Dist: sqlalchemy
23
23
  Requires-Dist: numpy
24
+ Requires-Dist: psutil
24
25
 
25
26
  # 🦞 YouClaw - Your Personal AI Assistant
26
27
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "youclaw"
7
- version = "4.6.5"
7
+ version = "4.6.6"
8
8
  authors = [
9
9
  { name="Imran", email="imran@example.com" },
10
10
  ]
@@ -29,6 +29,7 @@ dependencies = [
29
29
  "beautifulsoup4",
30
30
  "sqlalchemy",
31
31
  "numpy",
32
+ "psutil",
32
33
  ]
33
34
 
34
35
  [project.scripts]
@@ -133,8 +133,8 @@ class MemoryManager:
133
133
  try:
134
134
  pw_hash = self._hash_password(password)
135
135
  await self.db.execute(
136
- "INSERT INTO users (username, password_hash, role) VALUES (?, ?, ?)",
137
- (username, pw_hash, role)
136
+ "INSERT INTO users (username, password_hash, role) VALUES (?, ?, 'admin')",
137
+ (username, pw_hash)
138
138
  )
139
139
  await self.db.commit()
140
140
  return True
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: youclaw
3
- Version: 4.6.5
3
+ Version: 4.6.6
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
@@ -21,6 +21,7 @@ Requires-Dist: httpx
21
21
  Requires-Dist: beautifulsoup4
22
22
  Requires-Dist: sqlalchemy
23
23
  Requires-Dist: numpy
24
+ Requires-Dist: psutil
24
25
 
25
26
  # 🦞 YouClaw - Your Personal AI Assistant
26
27
 
@@ -10,3 +10,4 @@ httpx
10
10
  beautifulsoup4
11
11
  sqlalchemy
12
12
  numpy
13
+ psutil
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