Gemini 3.6 Flash and 3.5 Flash-Lite Ignore Temperature, Top-P, and Top-K
Google's Gemini 3.6 Flash and Gemini 3.5 Flash-Lite ignore temperature, top_p, and top_k, according to Google's current migration guide. Existing Gemini requests…
If you're using OpenAI's Codex CLI, you might want it to work like Claude Code does by default: able to run powerful commands, but asking for your approval first.
Codex CLI has a safety feature called sandbox mode that restricts what the AI can do:
This is great for security, but it also means Codex can't do much useful work on real projects.
By default, Codex CLI either:
Neither setup gives you the sweet spot: full system access with human-in-the-loop approval.
Edit your Codex config file at ~/.codex/config.toml and add these lines at the top:
approval_policy = "untrusted"
sandbox_mode = "danger-full-access"
approval_policy = "untrusted": Codex will prompt you before executing any command. You review and approve each action.
sandbox_mode = "danger-full-access": Gives Codex full system access (file operations, network calls, shell commands, etc.) so it can actually get work done.
Together, these settings mean: Codex can do anything, but only with your explicit approval.
Give Vroni a GitHub issue, bug report, spec, or rough idea. It reads the repo, plans the change, writes code, runs checks, and works toward a review-ready pull request.
Take a look at vroni.com