handycode 2.1.2__tar.gz → 2.1.3__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 (23) hide show
  1. {handycode-2.1.2 → handycode-2.1.3}/PKG-INFO +1 -1
  2. {handycode-2.1.2 → handycode-2.1.3}/handycode/__init__.py +1 -1
  3. {handycode-2.1.2 → handycode-2.1.3}/handycode/logo.py +2 -0
  4. {handycode-2.1.2 → handycode-2.1.3}/handycode/models.py +20 -10
  5. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/PKG-INFO +1 -1
  6. {handycode-2.1.2 → handycode-2.1.3}/setup.py +1 -1
  7. {handycode-2.1.2 → handycode-2.1.3}/LICENSE +0 -0
  8. {handycode-2.1.2 → handycode-2.1.3}/README.md +0 -0
  9. {handycode-2.1.2 → handycode-2.1.3}/handycode/__main__.py +0 -0
  10. {handycode-2.1.2 → handycode-2.1.3}/handycode/assistant.py +0 -0
  11. {handycode-2.1.2 → handycode-2.1.3}/handycode/cli.py +0 -0
  12. {handycode-2.1.2 → handycode-2.1.3}/handycode/config.py +0 -0
  13. {handycode-2.1.2 → handycode-2.1.3}/handycode/file_manager.py +0 -0
  14. {handycode-2.1.2 → handycode-2.1.3}/handycode/main.py +0 -0
  15. {handycode-2.1.2 → handycode-2.1.3}/handycode/project_templates.py +0 -0
  16. {handycode-2.1.2 → handycode-2.1.3}/handycode/security.py +0 -0
  17. {handycode-2.1.2 → handycode-2.1.3}/handycode/utils.py +0 -0
  18. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/SOURCES.txt +0 -0
  19. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/dependency_links.txt +0 -0
  20. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/entry_points.txt +0 -0
  21. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/requires.txt +0 -0
  22. {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/top_level.txt +0 -0
  23. {handycode-2.1.2 → handycode-2.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: handycode
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: AI Code Assistant for DeepSeek
5
5
  Home-page: https://github.com/AuraTechno/HandyCode
6
6
  Author: AuraTechno
@@ -3,7 +3,7 @@ HandyCode - AI Ассистент для разработки
3
3
  Аналог Claude Code для командной строки
4
4
  """
5
5
 
6
- __version__ = "2.1.2"
6
+ __version__ = "2.1.3"
7
7
  __author__ = "AURA Tec."
8
8
  __license__ = "MIT"
9
9
 
@@ -51,6 +51,7 @@ def get_logo_plain() -> str:
51
51
  ║ ║
52
52
  ║ AI Ассистент для разработки ║
53
53
  ║ Prod. by AURA Tec. ║
54
+ ║ 2.1.2 ║
54
55
  ║ ║
55
56
  ╚══════════════════════════════════════════════════════════════╝
56
57
  """
@@ -84,6 +85,7 @@ def get_install_logo() -> str:
84
85
  ║ ║
85
86
  ║ {C.WHITE}AI Ассистент для разработки{C.CYAN} ║
86
87
  ║ {C.WHITE}Prod. by AURA Tec.{C.CYAN} ║
88
+ ║ {C.WHITE}2.1.3{C.CYAN} ║
87
89
  ║ ║
88
90
  ╚═════════════════════════════════════════════════════════════════════════════════════════════════╝{C.RESET}
89
91
  """
@@ -34,40 +34,50 @@ MODELS = {
34
34
 
35
35
  MODEL_SETTINGS = {
36
36
  "deepseek/deepseek-chat": {
37
- "temperature": 1,
37
+ "temperature": 0.3,
38
38
  "max_tokens": 8000,
39
- "description": "DeepSeek V3 - Лучший баланс скорости и качества"
39
+ "description": "DeepSeek V3 - Универсальный (точный код)"
40
40
  },
41
41
  "deepseek/deepseek-coder": {
42
- "temperature": 1,
42
+ "temperature": 0.1,
43
43
  "max_tokens": 8000,
44
- "description": "DeepSeek Coder - Специализирована для написания кода"
44
+ "description": "DeepSeek Coder - Код (макс. точность)"
45
45
  },
46
46
  "deepseek/deepseek-r1": {
47
- "temperature": 1,
47
+ "temperature": 0.5,
48
48
  "max_tokens": 4000,
49
- "description": "DeepSeek R1 - Глубокое мышление и анализ"
49
+ "description": "DeepSeek R1 - Анализ и архитектура"
50
50
  },
51
51
  "openai/gpt-4-turbo-preview": {
52
52
  "temperature": 0.3,
53
53
  "max_tokens": 4000,
54
- "description": "GPT-4 Turbo - Мощная универсальная модель"
54
+ "description": "GPT-4 Turbo"
55
55
  },
56
56
  "anthropic/claude-3-opus": {
57
57
  "temperature": 0.3,
58
58
  "max_tokens": 4000,
59
- "description": "Claude 3 Opus - Продвинутый анализ"
59
+ "description": "Claude 3 Opus"
60
60
  },
61
61
  "anthropic/claude-3-sonnet": {
62
+ "temperature": 0.2,
63
+ "max_tokens": 4000,
64
+ "description": "Claude 3 Sonnet"
65
+ },
66
+ "google/gemini-pro": {
67
+ "temperature": 0.4,
68
+ "max_tokens": 4000,
69
+ "description": "Gemini Pro"
70
+ },
71
+ "meta-llama/llama-3-70b-instruct": {
62
72
  "temperature": 0.3,
63
73
  "max_tokens": 4000,
64
- "description": "Claude 3 Sonnet - Быстрая и способная"
74
+ "description": "Llama 3 70B"
65
75
  },
66
76
  }
67
77
 
68
78
  DEFAULT_SETTINGS = {
69
79
  "temperature": 0.3,
70
- "max_tokens": 4000,
80
+ "max_tokens": 8000,
71
81
  "description": "Универсальная модель"
72
82
  }
73
83
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: handycode
3
- Version: 2.1.2
3
+ Version: 2.1.3
4
4
  Summary: AI Code Assistant for DeepSeek
5
5
  Home-page: https://github.com/AuraTechno/HandyCode
6
6
  Author: AuraTechno
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="handycode",
5
- version="2.1.2",
5
+ version="2.1.3",
6
6
  author="AuraTechno",
7
7
  description="AI Code Assistant for DeepSeek",
8
8
  long_description="HandyCode - AI Code Assistant",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes