93 lines
607 B
Julia
Executable File
93 lines
607 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("interface.jl")
|
|
using .interface
|
|
|
|
|
|
#------------------------------------------------------------------------------------------------100
|
|
|
|
""" version 0.0.1
|
|
Todo:
|
|
[] add chat mechanism
|
|
|
|
Change from version: 0.0.0
|
|
-
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end # module ChatAgent
|