repr-cli 0.2.18__py3-none-any.whl → 0.2.19__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.
- repr/cli.py +25 -14
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/METADATA +1 -1
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/RECORD +7 -7
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/WHEEL +0 -0
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/entry_points.txt +0 -0
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/licenses/LICENSE +0 -0
- {repr_cli-0.2.18.dist-info → repr_cli-0.2.19.dist-info}/top_level.txt +0 -0
repr/cli.py
CHANGED
|
@@ -933,24 +933,40 @@ def generate(
|
|
|
933
933
|
console.print(" repr generate --local")
|
|
934
934
|
raise typer.Exit(1)
|
|
935
935
|
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
936
|
+
# Resolve LLM mode and model from config
|
|
937
|
+
llm_config = get_llm_config()
|
|
938
|
+
default_mode = llm_config.get("default", "local")
|
|
939
|
+
byok_provider = None
|
|
940
940
|
|
|
941
|
+
if not local and not cloud:
|
|
941
942
|
if default_mode == "local":
|
|
942
943
|
local = True
|
|
943
944
|
elif default_mode == "cloud" and is_authenticated() and is_cloud_allowed():
|
|
944
945
|
cloud = True
|
|
946
|
+
elif default_mode.startswith("byok:"):
|
|
947
|
+
byok_provider = default_mode.split(":", 1)[1]
|
|
945
948
|
else:
|
|
946
949
|
# Fallback: local if not signed in or cloud not allowed
|
|
947
950
|
local = True
|
|
948
|
-
|
|
951
|
+
|
|
952
|
+
# Determine model and provider string for display
|
|
953
|
+
if byok_provider:
|
|
954
|
+
from .config import get_byok_config, BYOK_PROVIDERS
|
|
955
|
+
byok_cfg = get_byok_config(byok_provider)
|
|
956
|
+
model_name = byok_cfg.get("model") if byok_cfg else None
|
|
957
|
+
provider_name = BYOK_PROVIDERS.get(byok_provider, {}).get("name", byok_provider)
|
|
958
|
+
mode_str = f"{provider_name}: {model_name}" if model_name else provider_name
|
|
959
|
+
elif local:
|
|
960
|
+
provider_name = llm_config.get("local_provider") or "Ollama"
|
|
961
|
+
model_name = llm_config.get("local_model") or "llama3.2"
|
|
962
|
+
mode_str = f"{provider_name}: {model_name}"
|
|
963
|
+
else:
|
|
964
|
+
model_name = llm_config.get("cloud_model") or "gpt-4o-mini"
|
|
965
|
+
mode_str = f"Cloud: {model_name}"
|
|
966
|
+
|
|
949
967
|
if not json_output:
|
|
950
968
|
print_header()
|
|
951
969
|
|
|
952
|
-
mode_str = "local LLM" if local else "cloud LLM"
|
|
953
|
-
|
|
954
970
|
# Build timeframe string for display
|
|
955
971
|
if commits:
|
|
956
972
|
timeframe_str = f"specific commits"
|
|
@@ -1073,13 +1089,8 @@ def generate(
|
|
|
1073
1089
|
if not json_output:
|
|
1074
1090
|
console.print(f" Batch {current}/{total}")
|
|
1075
1091
|
|
|
1076
|
-
#
|
|
1077
|
-
|
|
1078
|
-
use_local = local or (not cloud and llm_config.get("default") == "local")
|
|
1079
|
-
if use_local:
|
|
1080
|
-
model = llm_config.get("local_model") or "llama3.2"
|
|
1081
|
-
else:
|
|
1082
|
-
model = None # Use default cloud model
|
|
1092
|
+
# Use model_name resolved earlier (handles local, cloud, and BYOK)
|
|
1093
|
+
model = model_name
|
|
1083
1094
|
|
|
1084
1095
|
try:
|
|
1085
1096
|
# Run synthesis sync
|
|
@@ -3,7 +3,7 @@ repr/__main__.py,sha256=N7amYwdGB3yzk2ZJJbtH2hhESNkDuhDL11dDEm5Kl60,166
|
|
|
3
3
|
repr/api.py,sha256=rJRn_4xZXipdBFMrsZbQPWfZKfPLWJpTI0uYUyvjFhw,22814
|
|
4
4
|
repr/auth.py,sha256=TpqwqwZ3tAEolcSYu-zD8oHhzfwHALkauPP1xg5VTiY,12208
|
|
5
5
|
repr/change_synthesis.py,sha256=z7GmCeEHQFlnqLtKDGDvlM7p9MAWl_ByeIJstEVAhbU,15223
|
|
6
|
-
repr/cli.py,sha256=
|
|
6
|
+
repr/cli.py,sha256=tcw_ben1VPE1wswiOLtGJ6esgh4lPgmCNb9eVjTQ7pU,225758
|
|
7
7
|
repr/config.py,sha256=S69hdgFdvcHoIO2zihuvsSAQf2Gp41JtC5GGlE4Cy78,34233
|
|
8
8
|
repr/configure.py,sha256=GnwjOC64F0uDD90IjA6LJNev8FlHHAHARuSLwBqI6k0,26860
|
|
9
9
|
repr/cron.py,sha256=Hvo9ssVmGn09dLIHKWqzorKkW7eXdLQnQlBzagTX2Ko,11402
|
|
@@ -50,9 +50,9 @@ repr/loaders/base.py,sha256=AE9lFr8ZvPYt6KDwBTkNv3JF5A2QakVn9gA_ha77GLU,4308
|
|
|
50
50
|
repr/loaders/claude_code.py,sha256=sWAiQgNVWsdw9qUDcfHDBi5k6jBL7D8_SI3NAEsL-io,11106
|
|
51
51
|
repr/loaders/clawdbot.py,sha256=daKfTjI16tZrlwGUNaVOnLwxKyV6eW102CgIOu4mwAw,12064
|
|
52
52
|
repr/loaders/gemini_antigravity.py,sha256=_0HhtC1TwB2gSu20Bcco_W-V3Bt6v9O2iqOL6kIHQLU,13766
|
|
53
|
-
repr_cli-0.2.
|
|
54
|
-
repr_cli-0.2.
|
|
55
|
-
repr_cli-0.2.
|
|
56
|
-
repr_cli-0.2.
|
|
57
|
-
repr_cli-0.2.
|
|
58
|
-
repr_cli-0.2.
|
|
53
|
+
repr_cli-0.2.19.dist-info/licenses/LICENSE,sha256=tI16Ry3IQhjsde6weJ_in6czzWW2EF4Chz1uicyDLAA,1061
|
|
54
|
+
repr_cli-0.2.19.dist-info/METADATA,sha256=Cn6k6tYTtW0VIlbJMpLJMIB9bjifdNgOiSp2IXyguSQ,13387
|
|
55
|
+
repr_cli-0.2.19.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
56
|
+
repr_cli-0.2.19.dist-info/entry_points.txt,sha256=dlI-TCeDTW2rBC_nvOvMhwLihU4qsgD5r4Ot5BuVqSw,56
|
|
57
|
+
repr_cli-0.2.19.dist-info/top_level.txt,sha256=LNgPqdJPQnlicRve7uzI4a6rEUdcxHrNkUq_2w7eeiA,5
|
|
58
|
+
repr_cli-0.2.19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|