How can I disable queries to LLM vendrs on self-hosted instance?

Hey viq, good catch. I just pushed a fix for this: 296ad7d87

The self-hosted Docker settings ship with placeholder API keys (like sk-ant-XXXXXXXX…) which were passing the existing checks but then failing with 401s when they actually hit the API. Now all the LLM providers validate that keys have the right prefix format and aren’t just placeholder X’s. If the keys aren’t real, the LLM calls are simply skipped — no more outbound requests to any LLM vendors.

You shouldn’t need to change anything in your config. Just pull the latest (in 296ad7d87 on main) and the errors will stop.

Sam