roadmodel 0.2.0__tar.gz → 0.2.2__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.
Files changed (34) hide show
  1. {roadmodel-0.2.0 → roadmodel-0.2.2}/.gitignore +46 -0
  2. {roadmodel-0.2.0 → roadmodel-0.2.2}/PKG-INFO +3 -1
  3. {roadmodel-0.2.0 → roadmodel-0.2.2}/README.md +2 -0
  4. {roadmodel-0.2.0 → roadmodel-0.2.2}/docs/catalog.json +324 -61
  5. {roadmodel-0.2.0 → roadmodel-0.2.2}/docs/model-selector.txt +361 -69
  6. roadmodel-0.2.2/docs/model-tier-cost-scale.md +289 -0
  7. {roadmodel-0.2.0 → roadmodel-0.2.2}/docs/user-context.example.md +35 -0
  8. roadmodel-0.2.2/infra/README.md +878 -0
  9. roadmodel-0.2.2/infra/supabase/README.md +65 -0
  10. {roadmodel-0.2.0 → roadmodel-0.2.2}/pyproject.toml +1 -1
  11. {roadmodel-0.2.0 → roadmodel-0.2.2}/roadmodel/data/catalog.json +324 -61
  12. {roadmodel-0.2.0 → roadmodel-0.2.2}/roadmodel/data/model-selector.txt +361 -69
  13. roadmodel-0.2.2/roadmodel/data/model-tier-cost-scale.md +289 -0
  14. {roadmodel-0.2.0 → roadmodel-0.2.2}/roadmodel/data/user-context.example.md +35 -0
  15. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/__init__.py +1 -1
  16. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/providers/__init__.py +1 -0
  17. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/providers/anthropic.py +9 -2
  18. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/providers/google.py +17 -2
  19. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/providers/openai.py +20 -5
  20. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/recommend.py +23 -4
  21. roadmodel-0.2.0/docs/model-tier-cost-scale.md +0 -204
  22. roadmodel-0.2.0/roadmodel/data/model-tier-cost-scale.md +0 -204
  23. {roadmodel-0.2.0 → roadmodel-0.2.2}/LICENSE +0 -0
  24. {roadmodel-0.2.0 → roadmodel-0.2.2}/NOTICE +0 -0
  25. {roadmodel-0.2.0 → roadmodel-0.2.2}/docs/templates/phase-roadmap-template.md +0 -0
  26. {roadmodel-0.2.0 → roadmodel-0.2.2}/hatch_build.py +0 -0
  27. {roadmodel-0.2.0 → roadmodel-0.2.2}/roadmodel/data/phase-roadmap-template.md +0 -0
  28. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/__main__.py +0 -0
  29. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/cli.py +0 -0
  30. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/config.py +0 -0
  31. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/cost.py +0 -0
  32. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/errors.py +0 -0
  33. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/mcp_server.py +0 -0
  34. {roadmodel-0.2.0 → roadmodel-0.2.2}/src/roadmodel/user_context.py +0 -0
@@ -1,18 +1,45 @@
1
1
  # Environment + virtualenv
2
2
  .env
3
+ .env.local
4
+ .env.*.local
3
5
  .venv/
6
+ venv/
7
+ env/
8
+
9
+ # Infra console screenshots — the maintainer captures these per
10
+ # provisioning step for personal runbook trail; the committed
11
+ # infra/README.md carries every URL + ID + cap value the next
12
+ # maintainer needs, so screenshots stay local.
13
+ infra/screenshots/
4
14
 
5
15
  # Editor / OS
6
16
  .vscode/
17
+ .idea/
18
+ .cursor/
19
+ *.swp
20
+ *.swo
21
+ *~
7
22
  **/.DS_Store
23
+ Thumbs.db
24
+ desktop.ini
8
25
 
9
26
  # Python build artifacts
10
27
  __pycache__/
11
28
  *.pyc
29
+ *.pyo
30
+ *.pyd
12
31
  .pytest_cache/
32
+ .mypy_cache/
33
+ .ruff_cache/
34
+ .coverage
35
+ .coverage.*
36
+ htmlcov/
37
+ .tox/
38
+ .nox/
13
39
  build/
14
40
  dist/
15
41
  *.egg-info/
42
+ pip-wheel-metadata/
16
43
 
17
44
  # Bundled docs copied from docs/ by hatch_build.py at build time.
18
45
  # This directory is build output; committing it would create a second
@@ -34,9 +61,28 @@ tests/fixtures/*.json
34
61
  # docs/user-context.md and fill in your values.
35
62
  /docs/user-context.md
36
63
 
64
+ # Deploy CLI artifacts (link state, local config)
65
+ .railway/
66
+ .vercel/
67
+
68
+ # Node / Next.js (Phase 3 Step 4 onward, in web/)
69
+ node_modules/
70
+ .next/
71
+ out/
72
+ .turbo/
73
+ npm-debug.log*
74
+ yarn-debug.log*
75
+ yarn-error.log*
76
+ pnpm-debug.log*
77
+
78
+ # Logs
79
+ *.log
80
+ logs/
81
+
37
82
  # NOTE: /private/ (local-only planning docs) is excluded via .git/info/exclude
38
83
  # rather than .gitignore so editor tooling (Cursor / VSCode @-pickers,
39
84
  # fuzzy-find) still indexes the files locally while git continues to ignore
40
85
  # them. The directory has already been scrubbed from history (commit 1b60bfb)
41
86
  # and exists only on the maintainer's machine, so the per-clone exclude is
42
87
  # sufficient.
88
+ .vercel
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: roadmodel
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: BYO-key CLI that recommends the right AI model, platform, and settings for a prompt.
5
5
  Project-URL: Homepage, https://roadmodel.ai
6
6
  Project-URL: Repository, https://github.com/nathanramoscfa/roadmodel
@@ -412,6 +412,8 @@ canonical bundled-doc filename `model-selector.txt` is preserved so
412
412
  existing references in other projects keep working. Until v1.0.0,
413
413
  expect breaking changes to the CLI surface as Phase 2 lands.
414
414
 
415
+ See [ROADMAP.md](ROADMAP.md) for the phase plan and shipping order.
416
+
415
417
  ## Contributing
416
418
 
417
419
  See [CONTRIBUTING.md](CONTRIBUTING.md) for branch naming, pull
@@ -169,6 +169,8 @@ canonical bundled-doc filename `model-selector.txt` is preserved so
169
169
  existing references in other projects keep working. Until v1.0.0,
170
170
  expect breaking changes to the CLI surface as Phase 2 lands.
171
171
 
172
+ See [ROADMAP.md](ROADMAP.md) for the phase plan and shipping order.
173
+
172
174
  ## Contributing
173
175
 
174
176
  See [CONTRIBUTING.md](CONTRIBUTING.md) for branch naming, pull