Skip to content

Sync #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 32 commits into from
Jun 10, 2025
Merged

Sync #65

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
fdda8d7
Media display
rmusser01 Jun 7, 2025
5a5c6b2
media search isn't broken anymore
rmusser01 Jun 7, 2025
fff4a9f
and that fixes the pytest req
rmusser01 Jun 7, 2025
a2d3b62
bugfix
rmusser01 Jun 8, 2025
9991c7d
media viewing
rmusser01 Jun 8, 2025
3345cdd
Update .gitignore
rmusser01 Jun 8, 2025
e974295
Media window refactor
rmusser01 Jun 8, 2025
5acb244
new media view + collapse button
rmusser01 Jun 8, 2025
c107bdb
f
rmusser01 Jun 8, 2025
9784e99
progress
rmusser01 Jun 8, 2025
2d5906d
progress
rmusser01 Jun 8, 2025
aa511ae
cleanup
rmusser01 Jun 8, 2025
f62f4ed
fix, but weird bug...
rmusser01 Jun 8, 2025
2fa2a9c
fml
rmusser01 Jun 8, 2025
9f12dbb
rewrote chunking lib to support new logging library
rmusser01 Jun 8, 2025
53cbe35
fix chunking and summarization logging
rmusser01 Jun 8, 2025
99c2d69
webscraper
rmusser01 Jun 8, 2025
5baeabe
and bug fixed.
rmusser01 Jun 8, 2025
bf74a65
scraper
rmusser01 Jun 8, 2025
7af882b
eh
rmusser01 Jun 9, 2025
6115894
progress
rmusser01 Jun 9, 2025
c0650f8
media search in chat works
rmusser01 Jun 9, 2025
f69eb89
media search bugs
rmusser01 Jun 9, 2025
5f0fddd
Update Client_Media_DB_v2.py
rmusser01 Jun 9, 2025
c91c227
Update app.py
rmusser01 Jun 9, 2025
f01f47b
Update chat_right_sidebar.py
rmusser01 Jun 9, 2025
bf0efe4
Update chat_right_sidebar.py
rmusser01 Jun 9, 2025
99f7b50
Update chat_right_sidebar.py
rmusser01 Jun 9, 2025
ab15775
Update chat_right_sidebar.py
rmusser01 Jun 9, 2025
e4b3ad7
CSS and check for on-load
rmusser01 Jun 10, 2025
07011fd
Update tldw_cli.tcss
rmusser01 Jun 10, 2025
c0bc64c
Update tldw_cli.tcss
rmusser01 Jun 10, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,4 @@ cython_debug/
# PyPI configuration file
.pypirc
/~
/.idea
25 changes: 19 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,25 @@ dependencies = [

# --- Optional Dependencies ---
[project.optional-dependencies]
vllm = ["vllm"]
mlx = ["mlx-lm"]
transformers = ["transformers"]
# For groups like local_ingestion, local_rag, etc., if they have actual packages:
# local_ingestion = ["some-ingestion-package"]
# local_rag = ["some-rag-package"]
chunker = [
"langdetect",
"nltk",
"scikit-learn",
]
websearch = [
"lxml",
"bs4",#beautifulsoup
"pandas",
"playwright",
#"playwright_stealth",
"trafilatura",
"langdetect",
"nltk",
"scikit-learn",
]
local_vllm = ["vllm"]
local_mlx = ["mlx-lm"]
local_transformers = ["transformers"]
dev = [ # Example for development dependencies
"pytest",
"textual-dev", # For Textual development tools
Expand Down
144 changes: 67 additions & 77 deletions tldw_chatbook/Chunking/Chunk_Lib.py

Large diffs are not rendered by default.

Loading
Loading