102 lines
754 B
Julia
Executable File
102 lines
754 B
Julia
Executable File
module ChatAgent
|
|
|
|
# export agent, addNewMessage, clearMessage
|
|
|
|
|
|
""" 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("llmfunction.jl")
|
|
using .llmfunction
|
|
|
|
include("interface.jl")
|
|
using .interface
|
|
|
|
|
|
#------------------------------------------------------------------------------------------------100
|
|
|
|
""" version 0.0.5
|
|
Todo:
|
|
[WORKING] add formulateUserRespond to AI tools
|
|
|
|
Change from version: 0.0.4
|
|
-
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end # module ChatAgent
|