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.
- {handycode-2.1.2 → handycode-2.1.3}/PKG-INFO +1 -1
- {handycode-2.1.2 → handycode-2.1.3}/handycode/__init__.py +1 -1
- {handycode-2.1.2 → handycode-2.1.3}/handycode/logo.py +2 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/models.py +20 -10
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/PKG-INFO +1 -1
- {handycode-2.1.2 → handycode-2.1.3}/setup.py +1 -1
- {handycode-2.1.2 → handycode-2.1.3}/LICENSE +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/README.md +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/__main__.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/assistant.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/cli.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/config.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/file_manager.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/main.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/project_templates.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/security.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode/utils.py +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/SOURCES.txt +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/dependency_links.txt +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/entry_points.txt +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/requires.txt +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/handycode.egg-info/top_level.txt +0 -0
- {handycode-2.1.2 → handycode-2.1.3}/setup.cfg +0 -0
|
@@ -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":
|
|
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":
|
|
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": "
|
|
74
|
+
"description": "Llama 3 70B"
|
|
65
75
|
},
|
|
66
76
|
}
|
|
67
77
|
|
|
68
78
|
DEFAULT_SETTINGS = {
|
|
69
79
|
"temperature": 0.3,
|
|
70
|
-
"max_tokens":
|
|
80
|
+
"max_tokens": 8000,
|
|
71
81
|
"description": "Универсальная модель"
|
|
72
82
|
}
|
|
73
83
|
|
|
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
|