-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
37 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Benchmarking is an integral development part of the project. | ||
|
||
Contributors are encouraged to write benchmarks for their code, besides of the unit tests in `tests/` directory. |
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
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,20 +1,21 @@ | ||
[tool.poetry] | ||
name = "lightrag" | ||
|
||
packages = [ | ||
{ include = "core", from = "." }, | ||
{ include = "components", from = "." }, | ||
{ include = "prompts", from = "." }, | ||
{ include = "eval", from = "." }, | ||
] | ||
version = "0.1.0" | ||
description = "1000 lines of code is all you need. Be light and be lightening fast." | ||
description = "The 'PyTorch' library for LLM applications. RAG=Retriever-Agent-Generator." | ||
authors = ["Li Yin <[email protected]>"] | ||
readme = "README.md" | ||
license = "MIT" | ||
classifiers = [ | ||
"Topic :: Software Development :: Build Tools", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
packages = [ | ||
{ include = "core", from = "." }, | ||
{ include = "components", from = "." }, | ||
# { include = "use_cases", from = "." }, | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.11, <4.0" | ||
|
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