You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add --model option, remove OpenAI support and hardcoded compiler path
- Added --model CLI option to translate, translate-file, and example commands
- Model and compiler path now read exclusively from .env / CLI flags
- Removed OpenAI provider support (untested)
- Removed hardcoded default compiler path
- Updated README for consistency
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: python/felderize/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,11 +13,12 @@ pip install -e .
13
13
14
14
> **Note:**`pip install -e .` is required before running `felderize`. It registers the package and CLI command.
15
15
16
-
Create a `.env` file with your API key and optionally the compiler path:
16
+
Create a `.env` file:
17
17
18
18
```bash
19
19
ANTHROPIC_API_KEY=your-key-here
20
20
FELDERA_COMPILER=/path/to/sql-to-dbsp # default: sql-to-dbsp-compiler/SQL-compiler/sql-to-dbsp inside the Feldera repo
21
+
FELDERIZE_MODEL=claude-sonnet-4-5
21
22
```
22
23
23
24
The `FELDERA_COMPILER` path is required for validation. Without it, translation still works but output SQL is not verified. You can also pass it per-command with `--compiler PATH`.
0 commit comments