@oneciel-ai/claude-any 0.1.45 → 0.1.46
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.
- package/README.md +7 -1
- package/claude_any.py +13 -11
- package/docs/README.ja.md +6 -1
- package/docs/README.ko.md +6 -1
- package/docs/README.zh.md +6 -1
- package/docs/manual.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -48,7 +48,7 @@ arguments through unchanged.
|
|
|
48
48
|
|
|
49
49
|
Credits: One Ciel LLC
|
|
50
50
|
|
|
51
|
-
Current version: `0.1.
|
|
51
|
+
Current version: `0.1.46`
|
|
52
52
|
|
|
53
53
|
## Why This Exists
|
|
54
54
|
|
|
@@ -381,6 +381,12 @@ steps under that larger model's supervision.
|
|
|
381
381
|
|
|
382
382
|
## Changelog
|
|
383
383
|
|
|
384
|
+
### 0.1.46
|
|
385
|
+
|
|
386
|
+
- **Cleaner stream options**: the LLM options menu now hides `Stream word
|
|
387
|
+
chunking` whenever `Stream` is off, since chunking only applies to streamed
|
|
388
|
+
responses.
|
|
389
|
+
|
|
384
390
|
### 0.1.45
|
|
385
391
|
|
|
386
392
|
- **Interactive npm self-update check**: npm-installed `claude-any` now checks
|
package/claude_any.py
CHANGED
|
@@ -85,7 +85,7 @@ PROVIDER_LABELS = {
|
|
|
85
85
|
"self-hosted-nim": "Self Hosted NIM",
|
|
86
86
|
}
|
|
87
87
|
APP_NAME = "Claude Any"
|
|
88
|
-
VERSION = "0.1.
|
|
88
|
+
VERSION = "0.1.46"
|
|
89
89
|
CREDITS = "Credits: One Ciel LLC"
|
|
90
90
|
|
|
91
91
|
LOG_LEVELS = {"SILENT": 0, "ERROR": 1, "WARN": 2, "INFO": 3, "DEBUG": 4, "TRACE": 5}
|
|
@@ -6595,12 +6595,13 @@ def llm_option_panel_rows(provider: str, pcfg: dict[str, Any], lang: str | None
|
|
|
6595
6595
|
add("Top P", "top_p", opts.get("top_p", "default"))
|
|
6596
6596
|
add("Top K", "top_k", opts.get("top_k", "default"))
|
|
6597
6597
|
add("Think", "think", bool(pcfg.get("think", False)))
|
|
6598
|
-
add("Keep alive", "keep_alive", pcfg.get("keep_alive", "default"))
|
|
6599
|
-
add("Timeout ms", "request_timeout_ms", pcfg.get("request_timeout_ms", "default"))
|
|
6600
|
-
add("Stream", "stream_enabled", "on" if bool(pcfg.get("stream_enabled", True)) else "off")
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
add("Rate limit
|
|
6598
|
+
add("Keep alive", "keep_alive", pcfg.get("keep_alive", "default"))
|
|
6599
|
+
add("Timeout ms", "request_timeout_ms", pcfg.get("request_timeout_ms", "default"))
|
|
6600
|
+
add("Stream", "stream_enabled", "on" if bool(pcfg.get("stream_enabled", True)) else "off")
|
|
6601
|
+
if bool(pcfg.get("stream_enabled", True)):
|
|
6602
|
+
add("Stream word chunking", "stream_word_chunking", "on" if bool(pcfg.get("stream_word_chunking", False)) else "off")
|
|
6603
|
+
add("Rate limit RPM", "rate_limit_rpm", pcfg.get("rate_limit_rpm", 40))
|
|
6604
|
+
add("Rate limit status", "rate_limit_status", "on" if bool(pcfg.get("rate_limit_status", True)) else "off")
|
|
6604
6605
|
else:
|
|
6605
6606
|
if provider in ("vllm", "nvidia-hosted", "self-hosted-nim"):
|
|
6606
6607
|
add("Context window", "context_window", pcfg.get("context_window", "default"))
|
|
@@ -6613,10 +6614,11 @@ def llm_option_panel_rows(provider: str, pcfg: dict[str, Any], lang: str | None
|
|
|
6613
6614
|
add("Temperature", "temperature", pcfg.get("temperature", "default"))
|
|
6614
6615
|
add("Top P", "top_p", pcfg.get("top_p", "default"))
|
|
6615
6616
|
add("Top K", "top_k", pcfg.get("top_k", "default"))
|
|
6616
|
-
if provider in ("vllm", "self-hosted-nim"):
|
|
6617
|
-
add("Native compatibility", "native_compat", bool(pcfg.get("native_compat", True)))
|
|
6618
|
-
add("Stream", "stream_enabled", "on" if bool(pcfg.get("stream_enabled", True)) else "off")
|
|
6619
|
-
|
|
6617
|
+
if provider in ("vllm", "self-hosted-nim"):
|
|
6618
|
+
add("Native compatibility", "native_compat", bool(pcfg.get("native_compat", True)))
|
|
6619
|
+
add("Stream", "stream_enabled", "on" if bool(pcfg.get("stream_enabled", True)) else "off")
|
|
6620
|
+
if bool(pcfg.get("stream_enabled", True)):
|
|
6621
|
+
add("Stream word chunking", "stream_word_chunking", "on" if bool(pcfg.get("stream_word_chunking", False)) else "off")
|
|
6620
6622
|
elif provider == "anthropic":
|
|
6621
6623
|
add("Timeout ms", "request_timeout_ms", pcfg.get("request_timeout_ms", "Claude Code default"))
|
|
6622
6624
|
|
package/docs/README.ja.md
CHANGED
|
@@ -47,7 +47,7 @@ vLLM、NVIDIA hosted、self-hosted NIM を選択し、通常の Claude Code 引
|
|
|
47
47
|
|
|
48
48
|
Credits: One Ciel LLC
|
|
49
49
|
|
|
50
|
-
現在のバージョン: `0.1.
|
|
50
|
+
現在のバージョン: `0.1.46`
|
|
51
51
|
|
|
52
52
|
## 作られた理由
|
|
53
53
|
|
|
@@ -351,6 +351,11 @@ Windows/Linux 管理、クリーンアップスクリプト、定期的なセキ
|
|
|
351
351
|
|
|
352
352
|
## 変更履歴
|
|
353
353
|
|
|
354
|
+
### 0.1.46
|
|
355
|
+
|
|
356
|
+
- **Stream options の整理**: `Stream` が off の場合、`Stream word chunking` を
|
|
357
|
+
LLM options menu から非表示にします。chunking は stream 応答にだけ意味があります。
|
|
358
|
+
|
|
354
359
|
### 0.1.45
|
|
355
360
|
|
|
356
361
|
- **対話型 npm self-update check**: npm でインストールされた `claude-any` は起動前に
|
package/docs/README.ko.md
CHANGED
|
@@ -47,7 +47,7 @@ NVIDIA hosted, self-hosted NIM을 선택하고, Claude Code의 일반 인자는
|
|
|
47
47
|
|
|
48
48
|
Credits: One Ciel LLC
|
|
49
49
|
|
|
50
|
-
현재 버전: `0.1.
|
|
50
|
+
현재 버전: `0.1.46`
|
|
51
51
|
|
|
52
52
|
## 왜 만들었나
|
|
53
53
|
|
|
@@ -351,6 +351,11 @@ Windows 이벤트 로그 리뷰, 바이러스/랜섬웨어 침입 시도 정리,
|
|
|
351
351
|
|
|
352
352
|
## 변경 이력
|
|
353
353
|
|
|
354
|
+
### 0.1.46
|
|
355
|
+
|
|
356
|
+
- **Stream 옵션 정리**: `Stream`이 off일 때는 `Stream word chunking` 항목을
|
|
357
|
+
LLM 옵션 메뉴에서 숨깁니다. chunking은 스트리밍 응답에만 의미가 있습니다.
|
|
358
|
+
|
|
354
359
|
### 0.1.45
|
|
355
360
|
|
|
356
361
|
- **대화형 npm self-update check**: npm으로 설치된 `claude-any`는 실행 전 npm
|
package/docs/README.zh.md
CHANGED
|
@@ -47,7 +47,7 @@ NIM,并把普通 Claude Code 参数原样传递。
|
|
|
47
47
|
|
|
48
48
|
Credits: One Ciel LLC
|
|
49
49
|
|
|
50
|
-
当前版本: `0.1.
|
|
50
|
+
当前版本: `0.1.46`
|
|
51
51
|
|
|
52
52
|
## 为什么存在
|
|
53
53
|
|
|
@@ -337,6 +337,11 @@ Hermes 格式模型或部分较旧的 Qwen tool template。
|
|
|
337
337
|
|
|
338
338
|
## 更新日志
|
|
339
339
|
|
|
340
|
+
### 0.1.46
|
|
341
|
+
|
|
342
|
+
- **Stream options 更清晰**:当 `Stream` 关闭时,LLM options menu 会隐藏
|
|
343
|
+
`Stream word chunking`。chunking 只对流式响应有意义。
|
|
344
|
+
|
|
340
345
|
### 0.1.45
|
|
341
346
|
|
|
342
347
|
- **交互式 npm self-update check**:通过 npm 安装的 `claude-any` 会在启动前检查
|
package/docs/manual.md
CHANGED
package/package.json
CHANGED