diff --git a/bridge.lua b/bridge.lua index 85e7eacc..35f521da 100644 --- a/bridge.lua +++ b/bridge.lua @@ -1282,10 +1282,10 @@ return function(_python, _bridged) ---@param v table function KoboldLib_setters.outputs(t, v) if koboldbridge.userstate ~= "outmod" then - error("Cannot write to `KoboldLib.generated` from outside of an output modifier") + error("Cannot write to `KoboldLib.outputs` from outside of an output modifier") return elseif type(v) ~= "table" then - error("`KoboldLib.generated` must be a 1D array of strings; you attempted to set it to a " .. type(v)) + error("`KoboldLib.outputs` must be a 1D array of strings; you attempted to set it to a " .. type(v)) return end koboldbridge.outputs = v