Fixed a markov chain thing i guess

This commit is contained in:
Yessiest 2023-01-23 14:18:01 +04:00
parent 29a21a2f8f
commit 92a4807322
2 changed files with 4 additions and 4 deletions

View File

@ -152,7 +152,7 @@ local markov = command("markov",{
return
end
markov_instance:load_state(preset)
local output = markov_instance:run("The",100)
local output = markov_instance:run(preset[1],100)
msg:reply(output)
end
})

View File

@ -1,8 +1,8 @@
markov = require("markov")
json = require("json")
text = [[
]]
text_file = io.open("input",'r')
text = text_file:read("*a")
text_file:close()
markov_instance = markov.new(text)
preset = io.open("new_preset.json","w")
a = markov_instance:save_state()