-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build system improvemts * default parameters working * cleanup dependencies * cleanup stuff * add search ui * cleanup github sites * read stdin working * apply black * cleanup entry generator * cleanups * selection of running item worked * ui did the job * use lazy evaluation * improvements * add desert theme * improvements * foo * theme improvements * test * wip * test * cleanup code * lazy bm25 working * cleanups * foo * remove unsued code * add cleanup script * ui improvements * improvments * replace * add poetry * fix poetry * poetry
- Loading branch information
1 parent
9f0b783
commit 57a1e7e
Showing
85 changed files
with
673 additions
and
985 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import os | ||
|
||
|
||
os.system("rm -rf dist/*") | ||
os.system("rm -rf __pycache__") | ||
os.system("rm -rf .mypy_cache") | ||
|
||
os.system("black . ") |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -3,8 +3,6 @@ | |
|
||
|
||
class End2End: | ||
""" """ | ||
|
||
def run(self): | ||
self.cleanup() | ||
self._run_shell( | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "python-search" | ||
version = "0.30.0" | ||
version = "0.31" | ||
description = "Build your knowledge database in python and retrieve it efficiently" | ||
authors = ["Jean Carlo Machado <[email protected]>"] | ||
|
||
|
@@ -26,6 +26,7 @@ openai = {version=">=0.27.0"} | |
python-dateutil = "^2.8.2" | ||
chardet = "^5.1.0" | ||
colorful = "^0.5.5" | ||
openapi = "^1.1.0" | ||
|
||
[tool.poetry.dev-dependencies] | ||
pytest = "^7.1.2" | ||
|
@@ -69,6 +70,7 @@ aps_webapi = 'python_search.sdk.web_api_sdk:main' | |
wrap_log_command = {reference = "wrap_log_command.sh", type = "file", extras = []} | ||
events_etl = 'python_search.events.events_etl:main' | ||
chat_gpt = 'python_search.chat_gpt:main' | ||
term_ui = 'python_search.search_ui.terminal_ui:main' | ||
entry_builder = 'python_search.entry_capture.entry_inserter_gui.entry_inserter_gui:main' | ||
prompt_editor = 'python_search.apps.prompt_editor:main' | ||
entry_embeddings = 'python_search.next_item_predictor.features.entry_embeddings:main' | ||
|
Binary file not shown.
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,10 @@ | ||
{ | ||
"folders": [ | ||
{ | ||
"path": ".." | ||
}, | ||
{ | ||
"path": "../../PySearchEntries" | ||
} | ||
] | ||
} |
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
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.