feat(config): disable runtime_fallback by default (opt-in)

This commit is contained in:
YeonGyu-Kim
2026-02-22 01:54:34 +09:00
parent 541302bc9f
commit c1f17136b1
6 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ export function createChatMessageHandler(args: {
hooks.runtimeFallback !== undefined &&
(typeof pluginConfig.runtime_fallback === "boolean"
? pluginConfig.runtime_fallback
: (pluginConfig.runtime_fallback?.enabled ?? true))
: (pluginConfig.runtime_fallback?.enabled ?? false))
return async (
input: ChatMessageInput,