From 8f0830a8ceee65237895fd926073485ba4fbe732 Mon Sep 17 00:00:00 2001 From: narawat Date: Sun, 8 Oct 2023 11:57:32 +0000 Subject: [PATCH] add files --- src/ChatAgent.jl | 89 +++++++++++++++++++++++++++++++++++++++++++++++- src/interface.jl | 67 ++++++++++++++++++++++++++++++++++++ 2 files changed, 155 insertions(+), 1 deletion(-) create mode 100644 src/interface.jl diff --git a/src/ChatAgent.jl b/src/ChatAgent.jl index c355a15..518b220 100644 --- a/src/ChatAgent.jl +++ b/src/ChatAgent.jl @@ -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 diff --git a/src/interface.jl b/src/interface.jl new file mode 100644 index 0000000..8e41c57 --- /dev/null +++ b/src/interface.jl @@ -0,0 +1,67 @@ +module interface + + +# export + +# using Flux, CUDA + +#------------------------------------------------------------------------------------------------100 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +end # module \ No newline at end of file