codebase-receipts-cli 1.0.0__py3-none-any.whl → 1.0.1__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: codebase-receipts-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Receipts — resume claim verifier & codebase-grounded interview prep CLI
5
5
  Project-URL: Homepage, https://github.com/Ishaan-1606/receipts-cli
6
6
  Project-URL: Repository, https://github.com/Ishaan-1606/receipts-cli
@@ -1,5 +1,5 @@
1
1
  receipts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- receipts/cli.py,sha256=W8YUEuFmnA0HpxF1d0OKOAfn1zaMMx2dQ1bAISTg3ro,69238
2
+ receipts/cli.py,sha256=6xYsnouR4QppAOtTUKjy1dcIZGpEfwqFanG_8a33kyk,69916
3
3
  receipts/config.py,sha256=OdMAcnn0jaaDImrmYIxmIUv2UD5TOmhPVd6-5AMl5RM,4392
4
4
  receipts/errors.py,sha256=_lV1Usmk2UqmWIX0Ee0kzhU79YpkbIdcMUQbHgoqqHM,482
5
5
  receipts/export.py,sha256=qWbnU2kkDfBc4pKC5ARnq3EP2JmrMElys4jYiwDcmBg,4225
@@ -71,8 +71,8 @@ receipts/verify/rewriter.py,sha256=zM5T5vQxmy1ZQnBbB9rvhVRHOmpsu-2csf_jM4NYL0k,6
71
71
  receipts/verify/router.py,sha256=dByAiZ0XvVQGFYMik7v-y4COVqCkeM8YmS-kLr-Sv24,7062
72
72
  receipts/verify/summaries.py,sha256=0Ihj17Th6CicZJbctf2QdoqSMDR86ATJjAMj6zY99Bk,8818
73
73
  receipts/verify/verifier.py,sha256=fcwp_PCrYDAJeFycFbpB5_0HAHDC8AWp4a11faddVAM,19709
74
- codebase_receipts_cli-1.0.0.dist-info/METADATA,sha256=9kdkEpoW3K12vN3o5F5nDLhPgAUTdvQG7kwXH-51D3U,9092
75
- codebase_receipts_cli-1.0.0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
76
- codebase_receipts_cli-1.0.0.dist-info/entry_points.txt,sha256=GW_kkDazAIFIVZd6sj6DM-5VrWcBakGCvPSJ84w9koE,47
77
- codebase_receipts_cli-1.0.0.dist-info/licenses/LICENSE,sha256=8Uz1XENAU_8FzLJWXQq_cWpdkoBr97ROq5N09lIhOv0,1070
78
- codebase_receipts_cli-1.0.0.dist-info/RECORD,,
74
+ codebase_receipts_cli-1.0.1.dist-info/METADATA,sha256=XhcqoDizlgtRgTL6ZJ1KnKPDIdz9NxeZEjvLpYzJeOU,9092
75
+ codebase_receipts_cli-1.0.1.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
76
+ codebase_receipts_cli-1.0.1.dist-info/entry_points.txt,sha256=GW_kkDazAIFIVZd6sj6DM-5VrWcBakGCvPSJ84w9koE,47
77
+ codebase_receipts_cli-1.0.1.dist-info/licenses/LICENSE,sha256=8Uz1XENAU_8FzLJWXQq_cWpdkoBr97ROq5N09lIhOv0,1070
78
+ codebase_receipts_cli-1.0.1.dist-info/RECORD,,
receipts/cli.py CHANGED
@@ -100,6 +100,24 @@ def setup() -> None:
100
100
  values["GEMINI_API_KEY"] = typer.prompt(
101
101
  "GEMINI_API_KEY", hide_input=True
102
102
  ).strip()
103
+ typer.echo("")
104
+ typer.echo(
105
+ "Gemini's free-tier embedding quota is limited, and a ChromaDB"
106
+ " collection is locked to whichever model embedded it first —"
107
+ " mixing providers on the same knowledge base breaks it."
108
+ )
109
+ use_ollama_embed = (
110
+ typer.prompt(
111
+ "Use local Ollama for embeddings instead? Recommended;"
112
+ " needs Ollama + nomic-embed-text pulled (y/n)",
113
+ default="y",
114
+ )
115
+ .strip()
116
+ .lower()
117
+ .startswith("y")
118
+ )
119
+ if use_ollama_embed:
120
+ values["RECEIPTS_EMBED_PROVIDER"] = "ollama"
103
121
  elif provider == "anthropic":
104
122
  typer.echo("")
105
123
  typer.echo("Get a key at https://console.anthropic.com/ (paid).")