feat: add default_stream function with false return value

Co-authored-by: aider (openai/andrew/openrouter/deepseek/deepseek-chat-v3.1) <aider@aider.chat>
This commit is contained in:
Andrew Phillips
2025-08-28 17:27:10 -03:00
parent 79179cc465
commit efabb9c3ca

View File

@@ -161,6 +161,10 @@ fn default_allow_binary() -> bool {
true
}
fn default_stream() -> bool {
false
}
fn check_basic_auth(auth_str: &str, expected_password: &str, expected_hash: &Option<String>) -> bool {
if !auth_str.starts_with("Basic ") {
return false;