Stop Asking LLMs to Be Deterministic
LLMs are stochastic by design. Reliable agent workflows come from surrounding that chaos with deterministic code, not from wishing the model were predictable.
8 entries · All tags
LLMs are stochastic by design. Reliable agent workflows come from surrounding that chaos with deterministic code, not from wishing the model were predictable.
What a Python entry point is, and how to use setuptools entry points to expose console scripts and plugin hooks in your own packages.
Your feature shipped, passed review, and then someone flagged the latency. A walkthrough of profiling Python to find where the time actually goes before you start optimizing.
You don't have to edit your source to set a Python breakpoint. Running your script through the pdb shell lets you break by line or function without touching the code.
A historical guide to building CPython 3.5 against a custom OpenSSL 1.0.2 installation to enable ALPN support on macOS.
A real-world walkthrough of diagnosing a Mercurial HTTP 400 error caused by oversized discovery-request headers.
A guide for prospective CPython contributors familiar with Git who need a practical Mercurial workflow built around bookmarks.
A practical guide to taking a Python package from an initial idea through project setup, testing, PyPI distribution, and announcement.