add files

This commit is contained in:
2023-10-08 11:57:32 +00:00
parent ca0ed31499
commit 8f0830a8ce
2 changed files with 155 additions and 1 deletions

View File

@@ -1,5 +1,92 @@
module ChatAgent
greet() = print("Hello World!")
# export
""" 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

67
src/interface.jl Normal file
View File

@@ -0,0 +1,67 @@
module interface
# export
# using Flux, CUDA
#------------------------------------------------------------------------------------------------100
end # module