-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* knowledge pack creqation is working- need to cleanup code * added joinpath * added tests and code improvements * refactored code - docstrings, path changes
- Loading branch information
1 parent
31f2f67
commit 4390d9d
Showing
8 changed files
with
506 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,28 @@ | ||
module RAGKit | ||
using HTTP, Gumbo, AbstractTrees, URIs | ||
using Gumbo: HTMLDocument, HTMLElement | ||
using EzXML | ||
using PromptingTools | ||
const PT = PromptingTools | ||
const RT = PromptingTools.Experimental.RAGTools | ||
using LinearAlgebra, Unicode, SparseArrays | ||
using HDF5 | ||
using Tar | ||
using Inflate | ||
|
||
using SHA | ||
using Serialization, URIs | ||
# using Regex | ||
|
||
# using Robots | ||
|
||
include("parser.jl") | ||
include("crawl.jl") | ||
include("extract_urls.jl") | ||
include("extract_urls.jl") | ||
include("preparation.jl") | ||
|
||
include("make_embeddings.jl") | ||
export make_embeddings | ||
|
||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.