54 lines
676 B
Julia
54 lines
676 B
Julia
module YiemAgent
|
|
|
|
# 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("utils.jl")
|
|
using .utils
|
|
|
|
include("toolRegistry.jl")
|
|
using .toolRegistry
|
|
|
|
# include("llmfunction.jl")
|
|
# using .llmfunction
|
|
|
|
include("agentCore.jl")
|
|
using .agentCore
|
|
|
|
include("api.jl")
|
|
using .api
|
|
|
|
|
|
# ---------------------------------------------- 100 --------------------------------------------- #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end # module YiemAgent_v1
|