janito 3.7.0__py3-none-any.whl → 3.8.0__py3-none-any.whl
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.
- janito/README.md +1 -1
- janito/docs/GETTING_STARTED.md +1 -1
- janito/providers/alibaba/model_info.py +10 -0
- janito/providers/alibaba/provider.py +1 -3
- janito/providers/moonshot/model_info.py +8 -8
- janito/providers/moonshot/provider.py +1 -1
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/METADATA +1 -1
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/RECORD +12 -12
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/WHEEL +0 -0
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/entry_points.txt +0 -0
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/licenses/LICENSE +0 -0
- {janito-3.7.0.dist-info → janito-3.8.0.dist-info}/top_level.txt +0 -0
janito/README.md
CHANGED
@@ -79,7 +79,7 @@ janito --set model=kimi-k1-8k
|
|
79
79
|
|
80
80
|
### Moonshot (Recommended)
|
81
81
|
|
82
|
-
- **Models**: kimi-k1-8k, kimi-k1-32k, kimi-k1-128k, kimi-k2-turbo-preview
|
82
|
+
- **Models**: kimi-k1-8k, kimi-k1-32k, kimi-k1-128k, kimi-k2-turbo-preview
|
83
83
|
- **Strengths**: Excellent Chinese/English support, competitive pricing, fast responses
|
84
84
|
- **Setup**: Get API key from [Moonshot AI Platform](https://platform.moonshot.cn/)
|
85
85
|
|
janito/docs/GETTING_STARTED.md
CHANGED
@@ -124,7 +124,7 @@ export JANITO_MODEL=ibm/granite-3-3-8b-instruct
|
|
124
124
|
- **kimi-k1-32k**: Better for longer contexts
|
125
125
|
- **kimi-k1-128k**: Best for very long documents
|
126
126
|
- **kimi-k2-turbo-preview**: Latest model with enhanced capabilities
|
127
|
-
- **kimi-k2-
|
127
|
+
- **kimi-k2-turbo-preview**: Turbo version of the advanced reasoning model
|
128
128
|
|
129
129
|
### OpenAI Models
|
130
130
|
- **gpt-5**: Latest GPT model with advanced capabilities
|
@@ -92,4 +92,14 @@ MODEL_SPECS = {
|
|
92
92
|
thinking=False,
|
93
93
|
max_cot=32768,
|
94
94
|
),
|
95
|
+
"qwen3-max-preview": LLMModelInfo(
|
96
|
+
name="qwen3-max-preview",
|
97
|
+
context=131072, # 128K context window
|
98
|
+
max_response=32768,
|
99
|
+
category="Alibaba Qwen3 Max Preview Model (OpenAI-compatible)",
|
100
|
+
driver="OpenAIModelDriver",
|
101
|
+
thinking_supported=True,
|
102
|
+
thinking=False,
|
103
|
+
max_cot=32768,
|
104
|
+
),
|
95
105
|
}
|
@@ -17,9 +17,7 @@ class AlibabaProvider(LLMProvider):
|
|
17
17
|
NAME = "alibaba"
|
18
18
|
MAINTAINER = "João Pinto <janito@ikignosis.org>"
|
19
19
|
MODEL_SPECS = MODEL_SPECS
|
20
|
-
DEFAULT_MODEL =
|
21
|
-
"qwen3-235b-a22b-instruct-2507" # 129k context, general-purpose model
|
22
|
-
)
|
20
|
+
DEFAULT_MODEL = "qwen3-max-preview" # 128k context, latest preview model
|
23
21
|
|
24
22
|
def __init__(
|
25
23
|
self, auth_manager: LLMAuthManager = None, config: LLMDriverConfig = None
|
@@ -1,10 +1,10 @@
|
|
1
1
|
from janito.llm.model import LLMModelInfo
|
2
2
|
|
3
3
|
MOONSHOT_MODEL_SPECS = {
|
4
|
-
"kimi-k2-
|
5
|
-
name="kimi-k2-
|
6
|
-
context=
|
7
|
-
max_input=
|
4
|
+
"kimi-k2-0711-preview": LLMModelInfo(
|
5
|
+
name="kimi-k2-0711-preview",
|
6
|
+
context=128000,
|
7
|
+
max_input=100000,
|
8
8
|
max_cot="N/A",
|
9
9
|
max_response=4096,
|
10
10
|
thinking_supported=False,
|
@@ -12,8 +12,8 @@ MOONSHOT_MODEL_SPECS = {
|
|
12
12
|
open="moonshot",
|
13
13
|
driver="OpenAIModelDriver",
|
14
14
|
),
|
15
|
-
"kimi-k2-
|
16
|
-
name="kimi-k2-
|
15
|
+
"kimi-k2-turbo-preview": LLMModelInfo(
|
16
|
+
name="kimi-k2-turbo-preview",
|
17
17
|
context=128000,
|
18
18
|
max_input=100000,
|
19
19
|
max_cot="N/A",
|
@@ -23,8 +23,8 @@ MOONSHOT_MODEL_SPECS = {
|
|
23
23
|
open="moonshot",
|
24
24
|
driver="OpenAIModelDriver",
|
25
25
|
),
|
26
|
-
"kimi-k2-
|
27
|
-
name="kimi-k2-
|
26
|
+
"kimi-k2-0905-preview": LLMModelInfo(
|
27
|
+
name="kimi-k2-0905-preview",
|
28
28
|
context=128000,
|
29
29
|
max_input=100000,
|
30
30
|
max_cot="N/A",
|
@@ -12,7 +12,7 @@ class MoonshotProvider(LLMProvider):
|
|
12
12
|
NAME = "moonshot"
|
13
13
|
MAINTAINER = "João Pinto <janito@ikignosis.org>"
|
14
14
|
MODEL_SPECS = MOONSHOT_MODEL_SPECS
|
15
|
-
DEFAULT_MODEL = "kimi-k2-
|
15
|
+
DEFAULT_MODEL = "kimi-k2-0905-preview"
|
16
16
|
|
17
17
|
def __init__(
|
18
18
|
self, auth_manager: LLMAuthManager = None, config: LLMDriverConfig = None
|
@@ -1,4 +1,4 @@
|
|
1
|
-
janito/README.md,sha256=
|
1
|
+
janito/README.md,sha256=Kd4GcEYIt04520J2AIMCZbp1enAGRzlLswCfyi1g5AY,4737
|
2
2
|
janito/__init__.py,sha256=a0pFui3A_AfWJiUfg93yE-Vf4868bqG3y9yg2fkTIuY,244
|
3
3
|
janito/__main__.py,sha256=lPQ8kAyYfyeS1KopmJ8EVY5g1YswlIqCS615mM_B_rM,70
|
4
4
|
janito/_version.py,sha256=PtAVr2K9fOS5sv6aXzmcb7UaR5NLGMFOofL7Ndjh75o,2344
|
@@ -102,7 +102,7 @@ janito/cli/core/setters.py,sha256=zjSUxy6iUzcrmEunFk7dA90KqbMaq2O7LTGP8wn2HxA,53
|
|
102
102
|
janito/cli/core/unsetters.py,sha256=FEw9gCt0vRvoCt0kRSNfVB2tzi_TqppJIx2nHPP59-k,2012
|
103
103
|
janito/cli/single_shot_mode/__init__.py,sha256=Ct99pKe9tINzVW6oedZJfzfZQKWpXz-weSSCn0hrwHY,115
|
104
104
|
janito/cli/single_shot_mode/handler.py,sha256=d251ObY-5bkUyccV9NYkKDF0VCKrQTrGEnwt3mtj61w,5529
|
105
|
-
janito/docs/GETTING_STARTED.md,sha256=
|
105
|
+
janito/docs/GETTING_STARTED.md,sha256=Yx3vi1LQWyDWlE_JYuz4V9EL-Gh4WU6cOBqCr8XidF4,4960
|
106
106
|
janito/drivers/dashscope.bak.zip,sha256=9Pv4Xyciju8jO1lEMFVgYXexoZkxmDO3Ig6vw3ODfL8,4936
|
107
107
|
janito/drivers/openai_responses.bak.zip,sha256=E43eDCHGa2tCtdjzj_pMnWDdnsOZzj8BJTR5tJp8wcM,13352
|
108
108
|
janito/drivers/azure_openai/driver.py,sha256=L2rQOl1d0BHaDChHLtZszAeuWNoyYIgwuYuahE1qJps,4152
|
@@ -148,8 +148,8 @@ janito/providers/__init__.py,sha256=EvOFeiqucAY9tgCosJ81p0QA6wQwMT1cR3EeIGrhSQQ,
|
|
148
148
|
janito/providers/dashscope.bak.zip,sha256=BwXxRmZreEivvRtmqbr5BR62IFVlNjAf4y6DrF2BVJo,5998
|
149
149
|
janito/providers/registry.py,sha256=Ygwv9eVrTXOKhv0EKxSWQXO5WMHvajWE2Q_Lc3p7dKo,730
|
150
150
|
janito/providers/alibaba/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
151
|
-
janito/providers/alibaba/model_info.py,sha256=
|
152
|
-
janito/providers/alibaba/provider.py,sha256=
|
151
|
+
janito/providers/alibaba/model_info.py,sha256=YFKRxsTavIN2_wEgjiY8izyU5NiPPqv22094AYfaGtg,3671
|
152
|
+
janito/providers/alibaba/provider.py,sha256=LBQoovAYKaUMB0O9-t3UC6bakI8lUzqHBRHwVaUZnIg,4179
|
153
153
|
janito/providers/anthropic/model_info.py,sha256=m6pBh0Ia8_xC1KZ7ke_4HeHIFw7nWjnYVItnRpkCSWc,1206
|
154
154
|
janito/providers/anthropic/provider.py,sha256=aGynBxCFc7oTyvGNDUkbutJCKurC_9J4AkReC2LTPYo,3023
|
155
155
|
janito/providers/azure_openai/model_info.py,sha256=TMSqEpQROIIYUGAyulYJ5xGhj7CbLoaKL_JXeLbXaG0,689
|
@@ -171,8 +171,8 @@ janito/providers/mistral/__init__.py,sha256=jFHSvtQro8BnHajv7M0Zf9vssXyTzLxyN2J-
|
|
171
171
|
janito/providers/mistral/model_info.py,sha256=yeCg30ZjJ-HL4QaH7YjADKReINkDMmA3Cj28g7MyMP0,2268
|
172
172
|
janito/providers/mistral/provider.py,sha256=rBFrwT40vnPi-whNCMI8o-OurIdCRxm3tkgPXBDB3Gk,4775
|
173
173
|
janito/providers/moonshot/__init__.py,sha256=QBirGjijujOZuJ1UZ8c7MflSy5EHjWnuBmAr3AupbH0,29
|
174
|
-
janito/providers/moonshot/model_info.py,sha256=
|
175
|
-
janito/providers/moonshot/provider.py,sha256=
|
174
|
+
janito/providers/moonshot/model_info.py,sha256=CcDtx_-eb2urjCtOi0hZLfBJOeCm7oNV0u8SIiUz9Q0,1030
|
175
|
+
janito/providers/moonshot/provider.py,sha256=7ZWeMdOp0pnu76631_flD2MCPNK8NPkGGRdmqOhEAU4,3855
|
176
176
|
janito/providers/openai/__init__.py,sha256=f0m16-sIqScjL9Mp4A0CQBZx6H3PTEy0cnE08jeaB5U,38
|
177
177
|
janito/providers/openai/model_info.py,sha256=VTkq3xcx2vk0tXlFVHQxKeFzl-DL1T1J2elVOEwCdHI,4265
|
178
178
|
janito/providers/openai/provider.py,sha256=PPr_qmSe5GyysnZCxhjeUVhE2LWKjKOSRel-8aaxq_U,4761
|
@@ -256,9 +256,9 @@ janito/tools/adapters/local/validate_file_syntax/ps1_validator.py,sha256=TeIkPt0
|
|
256
256
|
janito/tools/adapters/local/validate_file_syntax/python_validator.py,sha256=BfCO_K18qy92m-2ZVvHsbEU5e11OPo1pO9Vz4G4616E,130
|
257
257
|
janito/tools/adapters/local/validate_file_syntax/xml_validator.py,sha256=AijlsP_PgNuC8ZbGsC5vOTt3Jur76otQzkd_7qR0QFY,284
|
258
258
|
janito/tools/adapters/local/validate_file_syntax/yaml_validator.py,sha256=TgyI0HRL6ug_gBcWEm5TGJJuA4E34ZXcIzMpAbv3oJs,155
|
259
|
-
janito-3.
|
260
|
-
janito-3.
|
261
|
-
janito-3.
|
262
|
-
janito-3.
|
263
|
-
janito-3.
|
264
|
-
janito-3.
|
259
|
+
janito-3.8.0.dist-info/licenses/LICENSE,sha256=dXV4fOF2ZErugtN8l_Nrj5tsRTYgtjE3cgiya0UfBio,11356
|
260
|
+
janito-3.8.0.dist-info/METADATA,sha256=KojxYonxnLshxFtvWLAInVYyzmO2WpRhmgTu6dt8jFM,2312
|
261
|
+
janito-3.8.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
262
|
+
janito-3.8.0.dist-info/entry_points.txt,sha256=wIo5zZxbmu4fC-ZMrsKD0T0vq7IqkOOLYhrqRGypkx4,48
|
263
|
+
janito-3.8.0.dist-info/top_level.txt,sha256=m0NaVCq0-ivxbazE2-ND0EA9Hmuijj_OGkmCbnBcCig,7
|
264
|
+
janito-3.8.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|