update
This commit is contained in:
15
src/mcts.jl
15
src/mcts.jl
@@ -9,7 +9,7 @@ export MCTSNode, runMCTS
|
||||
|
||||
using Dates, UUIDs, DataStructures, JSON3, Random
|
||||
using GeneralUtils
|
||||
using ..type
|
||||
using ..type, ..llmfunction
|
||||
|
||||
# ---------------------------------------------- 100 --------------------------------------------- #
|
||||
|
||||
@@ -232,8 +232,19 @@ julia>
|
||||
"""
|
||||
function transition(a::T1, state::T2, action::T3,
|
||||
actioninput::T3) where {T1<:agent, T2<:AbstractDict, T3<:AbstractString}
|
||||
error("--> transition")
|
||||
|
||||
error("--> transition")
|
||||
# map action and input() to llm function
|
||||
# result =
|
||||
# if action == "chatbox"
|
||||
# chatbox(input)
|
||||
# elseif
|
||||
|
||||
# else
|
||||
|
||||
# end
|
||||
|
||||
|
||||
end
|
||||
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user