This commit is contained in:
narawat lamaiin
2024-06-01 15:03:15 +07:00
parent de51dfd69d
commit 3269b27237
10 changed files with 1394 additions and 15 deletions

View File

@@ -0,0 +1,28 @@
module LLMMCTS
# export agent
""" Order by dependencies of each file. The 1st included file must not depend on any other
files and each file can only depend on the file included before it.
"""
include("type.jl")
using .type
include("util.jl")
using .util
include("mcts.jl")
using .mcts
include("interface.jl")
using .interface
# ---------------------------------------------- 100 --------------------------------------------- #
end # module LLMMCTS