| 25 | namespace { |
| 26 | |
| 27 | const char* getenv_nonempty(const char* name) { |
| 28 | const char* v = std::getenv(name); |
| 29 | return (v && *v) ? v : nullptr; |
| 30 | } |
| 31 | |
| 32 | ai::JsonValue lookup_user(const ai::JsonValue& args, |
| 33 | const ai::ToolExecutionContext&) { |
nothing calls this directly
no outgoing calls
no test coverage detected