Releases: thiswillbeyourgithub/wdoc
Release 5.1.0
What's new
This release focuses on modular installation extras, CLI robustness improvements, and a sweep of bug fixes across summarization, logging, and setup.
✨ Features
- CLI: Accept kebab-case flags (
--foo-bar→--foo_bar) automatically ([e9bfb80]) - CLI: Warn on every
sys.argvmutation viaArgvState([4fe38f2]); accept--yt_*as shorthand for--youtube_doc_*([f800805]) - YouTube: Auto-detect original-language subtitle track (
-orig), falling back toen/en-US([0753b00]) - Prompts: Skip per-bullet citations when only one source; mention it once at the top instead ([c0097b7])
- Exception: for YouTube/timecoded sources, use per-bullet timecodes (e.g.
[02:17:33]) ([c0779a1])
- Exception: for YouTube/timecoded sources, use per-bullet timecodes (e.g.
🐛 Fixes
- Summarize: Strip
*DEEP BREATH*-style LLM intro artifacts from all top-level bullets, not just the first ([dd09942], [c837143]) - Summarize: Fix model name in output summary ([e253d45])
- Logger: Actually remove the default DEBUG stderr handler instead of stacking a second sink on top of it ([2f3b295])
- Env: Match
--debug/--verboseby exact argv token, not substring, preventing false positives from argument values ([e183729]) - Loaders: Better check for empty documents ([5ebbbd2], [586bc5c])
- YouTube: Add troubleshooting instructions on failed extraction ([397d133]); fix default language handling ([29207e8])
- Audio: Fix
WDOC_WHISPER_API_KEYhandling whenOPENAI_API_KEYis unset ([23b6b1f]) - Setup: Guard
openparse-downloadbehind animport openparseprobe ([f4445b4]); scope yt-dlp pre-release upgrade to[youtube]users only ([9242566])
♻️ Refactors
- Setup: Split
install_requiresinto modular extras[youtube],[audio],[anki],[office],[logseq],[full]([7bb4744]) - CLI: Centralize all
sys.argvmutations inArgvStatehelper class ([1098157], [a22f56d]) - Logger: Move handler setup out of import side-effects into
setup_cli_logging(), called only from__main__.py([203ab6f])
🧪 Tests
- Cover
ArgvStatehelpers with unit tests ([6bc897a], [a22f56d]) - Move API-key precheck from
test_wdoc.pytorun_all_tests.shfor faster fail ([dbf4410]) - Skip
test_parse_docxon HTTP 429 instead of failing ([a02d684]) - Improve venv management in
run_all_tests.sh([b6a0dd8])
📚 Docs
- Clarify
uvx wdoc[full]usage throughout README andexamples.md([0f72eaf], [7653e9a]) - Add/fix
[anki]extra in Anki parse example ([0f72eaf]) - Improve installation instructions recommending
uvx([d88c461]) - Clarify how to use a cloned repository ([b8b4b5e])
Commits details since the last release
- [3e5834a] by @thiswillbeyourgithub, 2 hours ago:
bump version 5.0.1 -> 5.1.0
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [dd09942] by @thiswillbeyourgithub, 25 minutes ago:
fix(summarize): clean LLM intro artifacts on all top-level bullets
Extract the 'deep breath' / "i'll summarize" cleanup into
_strip_llm_intro_artifacts and run it on every top-level line, not just
the first one. Previously a source reference on line 1 would leave a
later deep-breath bullet untouched.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
wdoc/utils/tasks/summarize.py
- [c2c2ae5] by @thiswillbeyourgithub, 84 minutes ago:
add done todo
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [b6a0dd8] by @thiswillbeyourgithub, 89 minutes ago:
test: improved run_all_test.sh venv management
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [a02d684] by @thiswillbeyourgithub, 2 hours ago:
test(parsing): skip test_parse_docx on HTTP 429 instead of failing
The test downloads a sample DOCX from freetestdata.com, which sometimes
returns 429 (rate limited). That is not a wdoc bug, so skip rather than
fail in that case.
tests/test_parsing.py
- [c0779a1] by @thiswillbeyourgithub, 2 hours ago:
feat(prompts): use timecodes as per-bullet source for YouTube single-source
Extends the single-source citation exception: when the unique source is a
YouTube video (or other timecoded media), don't drop citations entirely.
Mention the video source once at the top, then use each bullet's timecode
(e.g. [02:17:33]) as its precise per-bullet pointer. Applied to both the
summary prompt (Sam) and the combine prompt (Carl).
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
wdoc/utils/prompts.py
- [c0097b7] by @thiswillbeyourgithub, 2 hours ago:
feat(prompts): skip per-bullet citations when only one source
Avoids wasting tokens by repeating the same page/WDOC_ID citation on every
bullet point when all information shares a single unique source. In that
case the citation is mentioned once at the top instead. Applies to both
the summary prompt (Sam) and the combine prompt (Carl).
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
wdoc/utils/prompts.py
- [c837143] by @thiswillbeyourgithub, 2 hours ago:
fix(summarize): strip "DEEP BREATH -" style prefixes from first line
Permissive on asterisks, "breath"/"breaths", and the separator character
so variants like "- DEEP BREATH - ", "DEEP BREATHS: ", "DEEP BREATH, "
are handled while preserving the bullet marker.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
wdoc/utils/tasks/summarize.py
- [e253d45] by @thiswillbeyourgithub, 2 hours ago:
fix: model name in output summary
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/summarize.py
- [c67f564] by @thiswillbeyourgithub, 2 hours ago:
docs(setup): note nltk punkt_tab download is likely redundant
unstructured already lazily downloads punkt_tab on first tokenize call,
so the eager post-install download is probably duplicate work. Keep it
as a safety net (and to front-load the network hit at install time
instead of on the first office-document parse), but document it.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
setup.py
- [f4445b4] by @thiswillbeyourgithub, 2 hours ago:
fix(setup): only run openparse-download when openparse is installed
Guard the post-install weight download with animport openparseprobe
so a stripped-down install (no openparse[ml] in install_requires) does
not call a missing console-script and emit a confusing error.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
setup.py
- [9242566] by @thiswillbeyourgithub, 2 hours ago:
fix(setup): scope yt-dlp pre-release upgrade to [youtube] users
yt-dlp lives in the optional [youtube] extra, but the post-install hook
was force-installing it for everyone (with--user, which is wrong
inside a venv and quietly drops the install outside the env). Probe for
yt_dlp first and only run thepip install -U --pre yt-dlpif it's
already there. This keeps yt-dlp truly optional while still letting
[youtube] users track YouTube extractor fixes that land in pre-releases.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
setup.py
- [eb9eba4] by @thiswillbeyourgithub, 2 hours ago:
refactor(setup): declare audioop-lts via the [audio] extra
Move the audioop-lts 3.13+ install out of the imperative post-install
hook and into the[audio]extra with apython_version>='3.13'
environment marker. audioop-lts is only needed because pydub needs it,
and pydub already lives in[audio], so the conditional belongs there.
This also makes the dependency visible to non-python setup.py install
installers (pip install wdoc[audio], uv, pipx, etc.) which never ran
the post-install hook in the first place.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
setup.py
- [bafb379] by @thiswillbeyourgithub, 2 hours ago:
chore(setup): drop python-magic git install from post-install
The git install existed to get the FIFO/pipe fix from upstream PR for
issue #261, used viamagic.from_bufferon stdin bytes. That code path
is commented out in batch_file_loader.py, and the two remaining call
sites (magic.from_filein batch_file_loader.py and pdf.py) work fine
with the released 0.4.27 wheel on PyPI. Both call sites are already
wrapped in try/except, so python-magic stays optional at runtime.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
setup.py
- [203ab6f] by @thiswillbeyourgithub, 2 hours ago:
refactor(logger): move handler setup out of import side effects
When wdoc was imported as a library (e.g. as an open-webui tool),
wdoc/utils/logger.py mutated the global loguru logger at import time:
removing the default stderr sink and adding its own stdout/stderr/file
sinks. That clobbered the host application's loguru configuration.
Wrap the handler installation in a setup_cli_logging() function that
is called explicitly from wdoc/main.py. Library users get whatever
loguru handlers the host already configured (since loguru is a
singleton, wdoc's records will flow through them automatically); CLI
users get the customized colorized stdout/stderr plus the rotated
file log.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
wdoc/init.py
wdoc/main.py
wdoc/utils/logger.py
wdoc/wdoc.py
- [b8b4b5e] by @thiswillbeyourgithub, 2 hours ago:
doc: clarify how to use a cloned repository
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [dbf4410] by @thiswillbeyourgithub, 2 hours ago:
test(env): move API-key precheck from test_wdoc.py to run_all_tests.sh
Fails fast at the shell level before spinning up the venv and pytest,
rather than only when test_wdoc.py is imported.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
tests/run_all_tests.sh
tests/test_wd...
Release 5.0.1
What's new
feat
- Summary citations (
dcdecc86,6cbf025c,e5d7840b,9d7802aa)- Per-chunk metadata (page, source) injected as XML into summarization input
- LLM prompted to add
[p.N]citations; Python fallback adds them to uncited top-level bullets - Multi-file summaries use
[p.N, filename.pdf]format with shortest disambiguating path - New
citation_url_templateparameter turns page citations into clickable markdown links (e.g.{source}#page={page})
- Query output anchor links (
8f72df69): WDOC_ID citations now render as[N](#document-N)with HTML anchors for in-page navigation
change
- Default models switched to OpenRouter/DeepSeek (
14ac41e4,be3dced3)WDOC_DEFAULT_MODELandWDOC_DEFAULT_QUERY_EVAL_MODELnow default toopenrouter/deepseek/deepseek-v4-proandopenrouter/deepseek/deepseek-v4-flash- Routes through OpenRouter instead of calling the DeepSeek provider directly
fix
b555a904: Coerceinttofloatfor CLI kwargs type checking (fixes Gradio UI sending integer values for float parameters)4015a3a9: Better removal of "deep breath" mentions in summarization prompts
test
61c8238c,0ea3d13d,b34e2e3f: Crash early at import time when required API keys (OPENROUTER_API_KEY,OPENAI_API_KEY,MISTRAL_API_KEY,WDOC_WHISPER_API_KEY) are missing1d07163c: Warn and skip instead of crash when whisper test hits a 502 error8380d8ad: Skip ollama embedding test when the ollama port is unreachablee672e092: Better test cleanup inrun_all_tests.sh
add
72819fab:bump_default_models.shhelper script — dry-run by default,--applyto write; syncs model names across docs, README, SKILL, ARCHITECTURE, anddocker/env.example
doc
9d7802aa,ec09cf1e,71560800,c400738f,96f9ac23: CLAUDE.md and ARCHITECTURE.md updated with new settings documentation requirements,sphinx-apidoccommand,bump_default_models.shusage, and citation feature docs057bb75f: Added DeepWiki badge to README3f59670e: SVG updated to remove outdated default model reference"}
Commits details since the last release
- [0c74f20] by @thiswillbeyourgithub, 10 minutes ago:
bump version 5.0.0 -> 5.0.1
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [1d07163] by @thiswillbeyourgithub, 31 minutes ago:
test: warn instead of crash when whisper test hits 502 error
A 502 from the whisper endpoint means the upstream is unavailable, not
that the code under test failed. Skip the test in that case so the run
reports not-tested rather than a false negative.
tests/test_wdoc.py
- [b34e2e3] by @thiswillbeyourgithub, 51 minutes ago:
test: crash early if WDOC_WHISPER_API_KEY is not set
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
tests/test_wdoc.py
- [0ea3d13] by @thiswillbeyourgithub, 55 minutes ago:
test: also crash early if MISTRAL_API_KEY is missing for a mistral/ test model
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
tests/test_wdoc.py
- [61c8238] by @thiswillbeyourgithub, 7 hours ago:
test: crash early when required API key for a test model is missing
Check that OPENROUTER_API_KEY / OPENAI_API_KEY are defined when any of the
test models (or their default-model fallbacks) starts with 'openrouter/' or
'openai/'. Fails fast at import time with a clear message instead of
producing opaque auth errors deep in a test run.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
tests/test_wdoc.py
- [8380d8a] by @thiswillbeyourgithub, 7 hours ago:
test: skip ollama embedding test when ollama port is unreachable
Probe OLLAMA_HOST (default 127.0.0.1:11434) before test_ollama_embeddings
and skip with a clear message instead of failing when ollama is not running.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
tests/test_wdoc.py
- [ec09cf1] by @thiswillbeyourgithub, 10 hours ago:
doc: mention bump_default_models.sh in CLAUDE.md and ARCHITECTURE.md
CLAUDE.md gets a new section explaining when and how to run the helper.
ARCHITECTURE.md gets a short pointer next to the default-models table.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
ARCHITECTURE.md
CLAUDE.md
- [be3dced] by @thiswillbeyourgithub, 10 hours ago:
change: prefix default models with 'openrouter/'
deepseek/deepseek-v4-pro -> openrouter/deepseek/deepseek-v4-pro
deepseek/deepseek-v4-flash -> openrouter/deepseek/deepseek-v4-flash
Routes the defaults through OpenRouter rather than calling the deepseek
provider directly. Applied via bump_default_models.sh --apply.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
README.md
SKILL.md
docker/env.example
wdoc/docs/help.md
wdoc/utils/env.py
- [72819fa] by @thiswillbeyourgithub, 10 hours ago:
add: bump_default_models.sh helper
Bumpver-style script for changing WDOC_DEFAULT_MODEL and
WDOC_DEFAULT_QUERY_EVAL_MODEL: reads the current values from
wdoc/utils/env.py, replaces both the full id and its basename across
docs/README/SKILL/ARCHITECTURE, and re-syncs key=value lines in
docker/env.example. Dry-run by default; --apply to write; never commits.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
bump_default_models.sh
- [3f59670] by @thiswillbeyourgithub, 10 hours ago:
svg should not mention an outdated default model
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/docs/svg/summary.svg
- [14ac41e] by @thiswillbeyourgithub, 10 hours ago:
change: switch default models to deepseek-v4-pro / deepseek-v4-flash
Update WDOC_DEFAULT_MODEL and WDOC_DEFAULT_QUERY_EVAL_MODEL defaults, and
align README, SKILL, ARCHITECTURE, and help docs to match.
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
ARCHITECTURE.md
README.md
SKILL.md
docker/env.example
wdoc/docs/help.md
wdoc/utils/env.py
- [e672e09] by @thiswillbeyourgithub, 10 hours ago:
better test cleanup
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [057bb75] by @thiswillbeyourgithub, 30 hours ago:
doc: add deepwiki badge
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [c400738] by @thiswillbeyourgithub, 4 weeks ago:
doc: add sphinx-apidoc command to CLAUDE.md
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
CLAUDE.md
- [7156080] by @thiswillbeyourgithub, 4 weeks ago:
doc: add new settings documentation requirements to CLAUDE.md
Detail that new settings must be documented in help.md and examples.md,
explain env var re-read behavior, list misc.py variables to keep updated,
and add a guide for adding new filetype support.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
CLAUDE.md
- [b555a90] by @thiswillbeyourgithub, 4 weeks ago:
fix: coerce int to float for cli_kwargs type checking
The Gradio UI can send integer values (e.g. 0, 1) for float parameters
like doccheck_min_lang_prob, causing a type check failure. Now int
values are automatically coerced to float when float is the expected type.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
wdoc/wdoc.py
-
[1b08a1e] by @thiswillbeyourgithub, 4 weeks ago:
Merge branch 'enh_citations' into dev -
[96f9ac2] by @thiswillbeyourgithub, 4 weeks ago:
added a CLAUDE.md file
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
CLAUDE.md
- [4015a3a] by @thiswillbeyourgithub, 4 weeks ago:
fix: better remover of "deep breath" mention
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/summarize.py
- [9d7802a] by @thiswillbeyourgithub, 4 weeks ago:
doc: document citation features in help, examples, README FAQ, and add tests - Add citation_url_template docs to help.md
- Add PDF citation example to examples.md
- Add FAQ entry about source citations in README.md
- Add unit tests for source_replace anchor links and citation URL template
- Fix double-bracket bug in citation URL link generation
Developed with Claude Code.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
README.md
tests/test_wdoc.py
wdoc/docs/examples.md
wdoc/docs/help.md
wdoc/utils/tasks/summarize.py
- [e5d7840] by @thiswillbeyourgithub, 4 weeks ago:
feat: add citation_url_template parameter for clickable citation links
When set (e.g. "{source}#page={page}"), page citations like [p.42]
become markdown links p.42 in summary output.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
wdoc/utils/tasks/summarize.py
wdoc/wdoc.py
- [dcdecc8] by @thiswillbeyourgithub, 4 weeks ago:
feat: add page citations to summaries with hybrid LLM + Python fallback - Prompt instructs LLM to add [p.N] citations from chunk_metadata
- Python post-processing adds fallback citations to uncited top-level bullets
- Multi-file summaries use [p.N, filename.pdf] format
- Ambiguous filenames resolved with shortest distinguishing path
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
wdoc/utils/prompts.py
wdoc/utils/tasks/summarize.py
- [6cbf025] by @thiswillbeyourgithub, 4 weeks ago:
feat: inject per-chunk metadata (page, source) as XML into summarization input
Each chunk now includes its page number and source path as XML metadata
before the text content, giving the LLM context for citations.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
wdoc/utils/tasks/summarize.py
- [8f72df6] by @thiswillbeyourgithub, 4 weeks ago:
feat: replace WDOC_ID plain numbers with markdown anchor links in query output
Citations now render as N instead of plain numbers,
and document sections include HTML anchors for in-page navigation.
Co-Authored-By: Claude Opus 4.6 noreply@anthropic.com
wdoc/utils/tasks/query.py
wdoc/wdoc.py
Release 5.0.0
What's new
Major Release: Docker Web UI, Python 3.13 Support, and Architecture Improvements
This major release introduces experimental Docker-based web interface, upgrades Python version requirements, migrates to modern LangChain modules, and includes breaking changes with license updates.
✨ Features
-
Docker Web Interface [7da29d1, 214835b, 6a4715b, 3f42424, cf9d937, 8690723, 6dcf7d2, 2ab086e, 92564b2, a2403f9, a8fa5cd, 5475b8b, cdcbe71, 94912ad, 87fef83, 56ffc4c, 24a9d8c, 0ce2649, c8ab404, e6de627, 2d5816c, 12cc4a7, 4f84c0e, f339966, 756c7ca, c16d5ac, af9c7fc, d1f0fed, 9128bec, 9fb2c7e, 90de7d8]
- Add experimental Gradio-based web UI for Docker deployments
- Support for environment variable configuration via web interface
- Dynamic filetype arguments and advanced settings accordions
- Log capture and display with monospace formatting
- PWA mode enabled with two-tab interface
- Sequential processing queue and non-root user security
- Load/save embeddings options in query GUI
-
Performance Improvements [770a524, a28a4be, 6caa011, 6e54b78, e3327a0]
- Avoid recomputing token length of documents with caching
- Dynamically create batches using token count and document limits
- Enable concurrency for answering documents
🔧 Refactoring & Breaking Changes
-
Python Version Upgrade [126026f, 2d1f8ab, b476dba]
- Require Python 3.13+ (breaking change)
- Update to Python 3.13.5
- Add audioop-lts post-install script for Python 3.13+
-
LangChain Migration [830edd4, 4eb303c, 4763b55, 908d536, e190d60, 5846ae0]
- Migrate to langchain_core and langchain_text_splitters modules
- Update imports from outdated langchain modules
- Require langchain >= 1.2.0
- Update CacheBackedEmbeddings import paths
-
License Change [f30fcda, b9e8eb2]
- Switch from GPLv3 to AGPLv3 (breaking change)
-
Async Operations [c412233]
- Use asyncio tqdm instead of regular tqdm for better async support
📚 Documentation
-
Docker Documentation [10be9b0, 69a3ed5, 555e1d5, 09cf656, 87d6442, ba75fd0, 44d419c, def3f97]
- Add comprehensive Docker README with setup instructions
- Include Gradio interface screenshot
- Add troubleshooting for permission issues
- Integrate Docker documentation into online docs
-
Diagrams [6bbb106, abbb8ed, f54d380, 0c70508, 9842b09, 14018a6, 4576785]
- Update workflow diagrams with titles
- Add combined diagram image with all three flowcharts
- Display diagrams side by side in README
- Improve Mermaid diagram structure with subgraphs
-
General Documentation [701645c, 19a4555, 2938f36, 1a4cf2d, 019c640, a96acd9, 0a6af6d, 4273ed1, 2cf0be4, 5ea630d, b747f05, 817380c, 0acca05, 659dcf8, 082b016, 86aeda4, 5af143a, 0abd268]
- Add website link and author information
- Clarify installation instructions with uvx commands
- Remove duplicate documentation sections
- Fix image links for Read the Docs compatibility
- Mention experimental WebUI feature
🐛 Fixes
-
Docker Environment [257ca2c, f1a2156, 6b0370f, cfb551c, fe6c5e1, eeaf300, e694fa1, 185bc09, 4b64e4d, 5f4890e, 5ae9c55, 84f0b5c, e681226, c592650]
- Add WDOC_IN_DOCKER environment variable detection
- Prevent pdb usage in Docker containers
- Fix cache directory permissions
- Configure build args for flexible wdoc installation
- Simplify parse task to text format with markdown
-
Python 3.11 Compatibility [c76240f, a058251, d710043, e3a4524]
- Unpinned package versions for Open WebUI compatibility
- Made compatible with Python 3.11 (later reverted to 3.13+ requirement)
-
General Fixes [c5d77b5, b80ce97, bf001a3, 27f4810, a42a3ad, 627b66b]
- Fix lazy loading loaders in pytest
- Fix exception chaining for pdb compatibility
- Fix globals arg for exec as positional argument
- Update required audioop-lts version
- Better assert explanations
📦 Dependencies
Commits details since the last release
- [7da29d1] by @thiswillbeyourgithub, 81 seconds ago:
bump version 4.1.2 -> 5.0.0
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [6bbb106] by @thiswillbeyourgithub, 5 minutes ago:
update the diagrams with titles
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
images/diagram_query.png
images/diagram_search.png
images/diagram_summary.png
- [abbb8ed] by @thiswillbeyourgithub, 8 minutes ago:
add title to the mermaid diagrams
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
images/diagram_query.mmd
images/diagram_search.mmd
images/diagram_summary.mmd
- [f54d380] by @thiswillbeyourgithub, 20 minutes ago:
Display the three images side by side
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [0c70508] by @thiswillbeyourgithub, 27 minutes ago:
add a single image containing all three flowcharts
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
images/all.mmd
images/all.png
- [701645c] by @thiswillbeyourgithub, 43 minutes ago:
doc: add link to your website
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
docs/source/index.rst
- [1a4cf2d] by @thiswillbeyourgithub, 46 minutes ago:
fix: cleanup duplicate getting started doc
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [019c640] by @thiswillbeyourgithub, 46 minutes ago:
fix: remove duplicate documentation
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [19a4555] by @thiswillbeyourgithub, 64 minutes ago:
doc: add link to my website
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [2938f36] by @thiswillbeyourgithub, 64 minutes ago:
mention I'm a psychiatry resident now
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [555e1d5] by @thiswillbeyourgithub, 65 minutes ago:
doc: better docker documentation
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
docker/README.md
- [09cf656] by @thiswillbeyourgithub, 73 minutes ago:
fix: use relative link for docker doc
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [c412233] by @thiswillbeyourgithub, 87 minutes ago:
fix: use asyncio tqdm instead of regular tqdm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
wdoc/utils/embeddings.py
wdoc/utils/filters.py
wdoc/utils/loaders/anki.py
wdoc/utils/loaders/pdf.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/summarize.py
wdoc/wdoc.py
- [e3327a0] by @thiswillbeyourgithub, 2 hours ago:
perf: forgot to enable concurrency for answering documents
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [23bef7d] by @thiswillbeyourgithub, 2 hours ago:
add the docker documentation to the manifest.in file
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
MANIFEST.in
- [994aa1d] by @thiswillbeyourgithub, 2 hours ago:
mention that the webui is experimental
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
docker/README.md
docker/gui.py
- [69a3ed5] by @thiswillbeyourgithub, 2 hours ago:
add picture of the docker ui
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
docker/README.md
images/gradio_interface.png
- [32ec5bd] by @thiswillbeyourgithub, 3 hours ago:
bump dep of langchain-litellm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [770a524] by @thiswillbeyourgithub, 12 days ago:
new: avoid recomputing the token length of documents
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/embeddings.py
wdoc/utils/misc.py
wdoc/wdoc.py
- [a28a4be] by @thiswillbeyourgithub, 12 days ago:
new: make sure get_tkn_length avoids recomputing document tokens
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [6caa011] by @thiswillbeyourgithub, 12 days ago:
refactor: dynamically create batches using token count and document limit
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/embeddings.py
- [6e54b78] by @thiswillbeyourgithub, 12 days ago:
minor
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/embeddings.py
- [830edd4] by @thiswillbeyourgithub, 13 days ago:
fix: import retrievers in the new langchain
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
wdoc/utils/retrievers.py
- [4eb303c] by @thiswillbeyourgithub, 13 days ago:
make sure langchain is after 1.2.0
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [4763b55] by @thiswillbeyourgithub, 13 days ago:
fix import cachebackedembeddings from outdated langchain
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/embeddings.py
- [908d536] by @thiswillbeyourgithub, 13 days ago:
fix outdated import in comment
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/compressed_embeddings_cacher.py
wdoc/utils/embeddings.py
- [e190d60] by @thiswillbeyourgithub, 13 ...
Release 4.1.2
What's new
What's new
This patch release fixes an optional dependency installation issue and improves hashing performance.
🐛 Fixes
- Fixed chonkie optional install dependency name (
semanticnotsemantics) [18a2f9d5]
⚡ Performance
- Switched from SHA256 to BLAKE3 for faster hashing [835e43dc]
- Updated in
setup.py,tests/test_parsing.py, andwdoc/utils/misc.py
- Updated in
Commits details since the last release
- [cb522e6] by @thiswillbeyourgithub, 10 seconds ago:
bump version 4.1.1 -> 4.1.2
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [18a2f9d] by @thiswillbeyourgithub, 30 minutes ago:
fix: chonkie optional install is called semantic not semantics
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [835e43d] by @thiswillbeyourgithub, 31 minutes ago:
perf: use blake3 instead of sha256
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
tests/test_parsing.py
wdoc/utils/misc.py
Release 4.1.1
What's new
This release focuses on integrating Chonkie for semantic chunking, improving test reliability, and code quality enhancements through comprehensive linting.
Features
- Chonkie Semantic Chunking Integration
- Implemented
ChonkieSemanticSplitterusing semantic chunking with memoization ([081e81a]) - Added
transform_documentsmethod to ChonkieSemanticSplitter ([534cc90]) - Replaced
RecursiveCharacterTextSplitterwithChonkieSemanticSplitterin summarize.py ([77f1652]) - Added chonkie to requirements ([7234f86])
- Merged chonkie branch into dev ([f89390a])
- Implemented
Fixes
-
Logging & Display
-
Parsing & Type Hints
Refactor
- Split batch file loader into two files ([a0420fd])
- Comprehensive ruff linter run across codebase ([d9f7eac])
- Switched from black to ruff ([2d8a51b])
- Made ruff configuration less strict ([e04fc8d])
Tests
- DDG Test Improvements
Chore
- Updated pyfiglet font ([fd49cca])
- Cleaned up completed TODO items from README ([113c008], [ea4a99b], [8656327], [7206234], [4a4f4e8])
- Minor improvements ([b873469], [ca55c13])
Commits details since the last release
- [766c373] by @thiswillbeyourgithub, 4 seconds ago:
bump version 4.1.0 -> 4.1.1
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [e1b2a87] by @thiswillbeyourgithub, 66 minutes ago:
test: finally fixed the ddg error not capturing the output
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [a02ffbc] by @thiswillbeyourgithub, 2 hours ago:
test: dont use alias of grep
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [66bf47c] by @thiswillbeyourgithub, 2 hours ago:
test: print output before the error message
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [4a4f4e8] by @thiswillbeyourgithub, 2 hours ago:
todo: done the chonkie integration
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [d9c5ae9] by @thiswillbeyourgithub, 2 hours ago:
test: capture the ddg output
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [96c5186] by @thiswillbeyourgithub, 2 hours ago:
test: better way to print the output
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [ccdffd1] by @thiswillbeyourgithub, 5 hours ago:
test: set max ddg results to 10 because it fails too often
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
tests/test_wdoc.py
- [a0420fd] by @thiswillbeyourgithub, 5 hours ago:
new: split batch file loader into two files
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
wdoc/utils/load_recursive.py
- [7234f86] by @thiswillbeyourgithub, 6 hours ago:
add chonkie to requirements
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
-
[f89390a] by @thiswillbeyourgithub, 25 hours ago:
Merge branch 'chonkie' into dev -
[534cc90] by @thiswillbeyourgithub, 27 hours ago:
feat: add transform_documents method to ChonkieSemanticSplitter
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/misc.py
- [77f1652] by @thiswillbeyourgithub, 29 hours ago:
refactor: replace RecursiveCharacterTextSplitter with ChonkieSemanticSplitter in summarize.py
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/tasks/summarize.py
- [081e81a] by @thiswillbeyourgithub, 29 hours ago:
feat: implement ChonkieSemanticSplitter using semantic chunking with memoization
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/misc.py
- [615828a] by @thiswillbeyourgithub, 3 days ago:
fix: typehint error for topk autoincrease
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/query.py
- [fd49cca] by @thiswillbeyourgithub, 3 days ago:
better pyfiglet font
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [99502e7] by @thiswillbeyourgithub, 3 days ago:
fix: colors where not appearing in loguru
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/logger.py
- [83e7fb9] by @thiswillbeyourgithub, 3 days ago:
fix wrong logic for stdout color
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/logger.py
- [b873469] by @thiswillbeyourgithub, 3 days ago:
minor
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/logger.py
- [d2bca84] by @thiswillbeyourgithub, 3 days ago:
fix: allow llm to mention thinking inside it's thinking
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [a50ec42] by @thiswillbeyourgithub, 3 days ago:
fix: error message when parsing thinking
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [ca55c13] by @thiswillbeyourgithub, 4 days ago:
minor
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [113c008] by @thiswillbeyourgithub, 4 days ago:
todo: no need to mention karakeep becauseit will be a loder
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [ea4a99b] by @thiswillbeyourgithub, 4 days ago:
todo: no more need to make an llm plugin because we support pipes now
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [8656327] by @thiswillbeyourgithub, 4 days ago:
todo: remove todo to move the task to their own file because it's done
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [7206234] by @thiswillbeyourgithub, 4 days ago:
todo: remove need for using dataclass to store tasks as its done
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [d9f7eac] by @thiswillbeyourgithub, 4 days ago:
run ruff linter everywhere
scripts/AnkiFiltered/AnkiFilteredDeckCreator.py
scripts/NtfySummarizer/NtfySummarizer.py
scripts/TheFiche/TheFiche.py
tests/test_parsing.py
tests/test_vectorstores.py
tests/test_wdoc.py
wdoc/main.py
wdoc/utils/batch_file_loader.py
wdoc/utils/customs/binary_faiss_vectorstore.py
wdoc/utils/customs/litellm_embeddings.py
wdoc/utils/embeddings.py
wdoc/utils/env.py
wdoc/utils/filters.py
wdoc/utils/interact.py
wdoc/utils/llm.py
wdoc/utils/loaders/init.py
wdoc/utils/loaders/anki.py
wdoc/utils/loaders/local_audio.py
wdoc/utils/loaders/local_html.py
wdoc/utils/loaders/local_video.py
wdoc/utils/loaders/logseq_markdown.py
wdoc/utils/loaders/online_media.py
wdoc/utils/loaders/pdf.py
wdoc/utils/loaders/shared_audio.py
wdoc/utils/loaders/youtube.py
wdoc/utils/misc.py
wdoc/utils/prompts.py
wdoc/utils/retrievers.py
wdoc/utils/tasks/parse.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/shared_query_search.py
wdoc/utils/tasks/types.py
wdoc/wdoc.py
- [e04fc8d] by @thiswillbeyourgithub, 4 days ago:
less strict ruff
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
.pre-commit-config.yaml
- [2d8a51b] by @thiswillbeyourgithub, 4 days ago:
switch from black to ruff
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
.pre-commit-config.yaml
setup.py
Release 4.1.0
What's new
What's new
This release focuses on robustness improvements, particularly around language detection, file loading, and error handling.
Features
- Task type system: Introduced dataclass-based task type storage for better type safety [7c95e3c]
- Source tag logging: Added failure count and success rate tracking to source tag logging [69dca45]
Fixes
- PowerPoint loader: Fixed TypeError when loading PowerPoint files [ebfc66c]
- Anki loader: Resolved forward reference error [73924e1]
- Language detection: Fixed potential edge case issue [2d928ab]
- Infinite loop detection:
Enhancements
- Language detection improvements:
- Batch file loader: Reduced verbosity of progress logging [d207d98]
- Testing: Improved model detection logic [5257c5a]
- Post-install: Use logger.error instead of print during installation [c0795e9]
Refactoring
- wdoc class: Added dynamic interaction_settings property [f806b98]
- Type hints: Improved type annotations across multiple modules [a94a889, 920e5d3]
Documentation
- Help text: Fixed powerpoint filetype documentation incorrectly mentioning .doc/.docx instead of .ppt/.pptx [e9b29eb]
Dependencies
- Bumped litellm to enable latest OpenRouter pricing [577e6f6]
Maintenance
- Removed debug print statement [80f7f32]
- Better warning messages [faa5d3b]
- Fixed setup.py logger usage [4a672c1]
Commits details since the last release
- [5adc87e] by @thiswillbeyourgithub, 72 seconds ago:
bump version 4.0.4 -> 4.1.0
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [0b9c6da] by @thiswillbeyourgithub, 2 hours ago:
enh: better exception catcher in language detecction
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [80f7f32] by @thiswillbeyourgithub, 3 hours ago:
remove a debug print
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/init.py
- [d7589cc] by @thiswillbeyourgithub, 3 hours ago:
enh: language detector reduce debug logs
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [c0e2ce7] by @thiswillbeyourgithub, 3 hours ago:
enh: language detector
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [2d928ab] by @thiswillbeyourgithub, 3 hours ago:
fix: potential issue in edge case when detecting language
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [69dca45] by @thiswillbeyourgithub, 4 hours ago:
feat: add failure count and success rate to source tag logging
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/batch_file_loader.py
- [f806b98] by @thiswillbeyourgithub, 4 hours ago:
refactor: add dynamic interaction_settings property to wdoc class
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/wdoc.py
- [a94a889] by @thiswillbeyourgithub, 4 hours ago:
minor: type hints
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [7c95e3c] by @thiswillbeyourgithub, 4 hours ago:
new: use a dataclass to store the type of tasks
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/main.py
wdoc/utils/batch_file_loader.py
wdoc/utils/loaders/init.py
wdoc/utils/misc.py
wdoc/utils/retrievers.py
wdoc/utils/tasks/parse.py
wdoc/utils/tasks/summarize.py
wdoc/utils/tasks/types.py
wdoc/wdoc.py
- [5257c5a] by @thiswillbeyourgithub, 5 hours ago:
better way to check for testing model
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/llm.py
wdoc/utils/misc.py
wdoc/wdoc.py
- [73924e1] by @thiswillbeyourgithub, 7 hours ago:
fix: forward reference error in anki
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/anki.py
- [ebfc66c] by @thiswillbeyourgithub, 7 hours ago:
fix: typeerror when loading powerpoint files
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/powerpoint.py
- [d207d98] by @thiswillbeyourgithub, 25 hours ago:
enh: reduice verbosity of something that looked like an infinite loop but was not
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
- [920e5d3] by @thiswillbeyourgithub, 25 hours ago:
fix: typehint in pdf
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/pdf.py
- [bb147b3] by @thiswillbeyourgithub, 25 hours ago:
refactor: replace loop counter with hash-based infinite loop detection
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/batch_file_loader.py
- [4a672c1] by @thiswillbeyourgithub, 25 hours ago:
fix: actually no we can't use loguru in setup.py
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [faa5d3b] by @thiswillbeyourgithub, 26 hours ago:
minor: better warning
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
- [fcf9ca5] by @thiswillbeyourgithub, 26 hours ago:
fix: the loop counter has to be high enough to detect infinite loop
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
- [e9b29eb] by @thiswillbeyourgithub, 26 hours ago:
doc: powerpoint filetype doc mentionned .doc and .docx instead of .ppt and .pptx
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/docs/help.md
- [577e6f6] by @thiswillbeyourgithub, 5 days ago:
bump litellm, allows using the latest openrouter price by litellm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [c0795e9] by @thiswillbeyourgithub, 6 days ago:
enh: use logger.error instead of print during the postinstall process
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
Release 4.0.2
What's new
What's new
This release focuses on bug fixes, performance improvements, and code cleanup related to docstore filtering and retriever functionality.
🐛 Fixes
-
Docstore filtering improvements
-
Retriever fixes
⚡ Performance
- Do not store nor serialize the unfiltered docstore ([d29d3a5], [a9a0a35])
- Renamed
filter_docstoretofilter_vectorstorefor clarity
- Renamed
✨ Features
- Added timing measurements for docstore serialization and deletion ([375c1a1])
🧹 Chores
Commits details since the last release
- [83f23dd] by @thiswillbeyourgithub, 9 seconds ago:
bump version 4.0.1 -> 4.0.2
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [a9a0a35] by @thiswillbeyourgithub, 17 minutes ago:
rename filter_docstore to filter_vectorstore
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
wdoc/wdoc.py
- [d29d3a5] by @thiswillbeyourgithub, 18 minutes ago:
perf: do not store nor serialize the unfiltered docsstore
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
wdoc/wdoc.py
- [cf9171d] by @thiswillbeyourgithub, 24 minutes ago:
fix: parent retriever when loading from embeddings
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/retrievers.py
- [de18c65] by @thiswillbeyourgithub, 37 minutes ago:
remove unused import
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/retrievers.py
- [39951a8] by @thiswillbeyourgithub, 37 minutes ago:
fix: typehint of retrievers in an edge case
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/retrievers.py
- [375c1a1] by @thiswillbeyourgithub, 45 minutes ago:
feat: add timing measurements for docstore serialization and deletion
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4.5) aider@aider.chat
wdoc/utils/filters.py
- [6525464] by @thiswillbeyourgithub, 48 minutes ago:
remove unused import
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
- [9c1d967] by @thiswillbeyourgithub, 48 minutes ago:
fix: actually the unfiltered docstore is serialized
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
wdoc/wdoc.py
- [ee9cc6f] by @thiswillbeyourgithub, 67 minutes ago:
fix: wrong type hint for create_filter_metadata
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
- [d96c2f3] by @thiswillbeyourgithub, 69 minutes ago:
fix: wrong type hint for filter_docstore
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/filters.py
- [1a2442d] by @thiswillbeyourgithub, 70 minutes ago:
fix: forgot to pass arguments to filter_docstore
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
Release 4.0.1
What's new
What's new
This release focuses on langfuse v3 compatibility and improved error handling.
🐛 Fixes
-
Langfuse v3 compatibility
-
Document loading robustness
📝 Documentation
- [56866d1] Add warning for using youtube audio backend instead of whisper or deepgram
🔧 Maintenance
- [fb49e60] Bump version 4.0.0 → 4.0.1
Commits details since the last release
- [fb49e60] by @thiswillbeyourgithub, 13 seconds ago:
bump version 4.0.0 -> 4.0.1
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [07257e0] by @thiswillbeyourgithub, 3 minutes ago:
fix: use langfuse opentelemetry for v3
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [56866d1] by @thiswillbeyourgithub, 11 minutes ago:
doc: add warning for using the youtube audio backend instead of whisper or deepgram
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/youtube.py
- [89f5132] by @thiswillbeyourgithub, 14 minutes ago:
fix: langfuse callback import changed for langfuse v3
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [3039bcf] by @thiswillbeyourgithub, 20 minutes ago:
fix: do not crash if no documents after transform_documents is ran
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/init.py
- [101c7f7] by @thiswillbeyourgithub, 29 minutes ago:
add assert that docs were found
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/init.py
Release 4.0.0
What's new
What's new
This release focuses on major performance improvements through lazy loading and deferred imports, extensive code refactoring for better maintainability, and improved testing infrastructure.
⚡ Performance
- Significantly faster startup time through deferred imports and lazy loading [52985d5, dce3c24, 3ffaec3]
- Moved litellm imports to run only when needed [52985d5]
- Deferred requests import [0b4c2fb]
- Removed eager imports from
__init__.pyfiles [306d4ca] - Moved imports in loaders, embeddings, and core modules [de1cecc, 08b9206, fd2dcba, 1838e0f, 1bd4ced, f1740c4, 2b3d9e8, 6fbe51d, 6c74d8e, f306325]
- Added lazy loading for document loaders with
WDOC_LAZY_LOADenv var [7fc5fad, ce10c4b]
🔧 Fixes
- Fixed forward reference type hints across multiple modules [fd6a7e7, 22b44b4, 15a2746]
- Fixed signature wrapping for parse function [29dbf5d]
- Fixed API tests for DuckDuckGo and OpenRouter [8b9ebc2, 8f511dd, 32e036d, 048f99e]
- Fixed missing filetype handling in edge cases [0422dec]
- Fixed error for Word document loading [8cad00d]
- Fixed lazy loading logic (was reversed) [a35446f]
- Fixed query_task and search_task output handling [6f633e8, 8b95a81]
- Fixed error when summary doesn't output to file using pipe [2a85a6b]
- Fixed imports in loaders [ebd4558, af85343, 986abd2, 4e61a6f]
- Added missing
audioop-ltsrequirement for Python 3.13+ [56bd634]
♻️ Refactoring
- Modularized loaders: Split monolithic loader file into separate modules [df1a0ad, d3ed873, f0a3fce, b249068, 984a8d3, def441f, fb421cc]
- Created dedicated files for PDF, Anki, URL, audio, HTML, and other loaders
- Enabled lazy loading of loader modules [7fc5fad]
- Extracted task-specific functions to separate modules:
- Moved
parse_doctoutils/tasks/parse.py[1c7c6e4] - Moved query/search retrieval logic to task modules [7982051, c2e6142]
- Moved
evaluate_doc_chaintoshared_query_search.py[8965c48] - Extracted query splitting logic to shared utility [4bb54a5]
- Moved
source_replaceto query.py [0ce5f4f] - Moved
autoincrease_top_kto query.py [38e82b4]
- Moved
- Split search and query task methods with better type hints [1d94644, 824f395, 319b8eb]
- Moved
debug_exceptionsto logger module [99cc99f] - Moved VectorStore filtering code to filters.py [de4ce57]
- Added
wdocSummarydataclass for type hinting [9fc51c0, 92f5c47] - Added lazy caching for
all_textsproperty [79b1661, 7b45948] - Removed obsolete
import_tricks.py[5116616]
🧪 Testing
- Improved test cleanup and temp folder removal [a768642, 35ef63e, c149f5d, 913378a]
- Better verbose output in cost tests [342ad3f]
- Use Mistral for OpenRouter API tests (zero data retention) [8f511dd]
- Added shell-based CLI test script for more reliable testing [cc74a84, 4170567]
- Added check for
wdoc[full]installation [7cb9a3c] - Updated Ollama embedding test to use
embeddingsgemma[4d47631] - Improved test assertions with more info [3d0f947]
📦 Dependencies
- Bumped langchain version [98fd2cb]
- Bumped litellm version [7aa2ce1]
- Bumped langfuse version (litellm bug fix) [fc16e5e]
- Updated general dependencies [616457c]
- Added unstructured to required dependencies [c98d0e9]
- Added bumpver to dev packages [54be0e2]
✨ Features
- Added
wdoc[full]installation option for all optional dependencies [6321942] - Added beartype runtime type validation for numpy arrays [691dbff]
- Prioritize throughput and Groq when using OpenRouter [f049846]
- Enable lazy loading of imports by default [7c2e397]
📝 Documentation
- Updated default models to latest Gemini in README and help [761ddd1, 0868086, 78e562f]
- Clarified that binary embeddings are not always better [fb611c4]
- Added link explaining fixed cache of LLM issue [fdc3c64]
- Improved docstrings for summarization functions [a06f570]
- Added docstring for VectorStore filtering [2bd8dcb]
🎨 Code Quality
- PEP8 formatting improvements [559fcc0, 13dd7d44, e10fb05]
- Removed unused imports [16c518e, cb9563e, b5a42ef]
- Improved type hints [78d399f, a801718, 0875b23]
- Import logger first to set log level [2dead91]
- Removed
if Truestatement [263a45d]
🔖 Version
- Bumped version 3.3.1 → 4.0.0 [e1548c4]
Commits details since the last release
- [e1548c4] by @thiswillbeyourgithub, 12 seconds ago:
bump version 3.3.1 -> 4.0.0
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [54be0e2] by @thiswillbeyourgithub, 47 seconds ago:
add bumpver to dev packages
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [37e80a7] by @thiswillbeyourgithub, 2 minutes ago:
doc: todo
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
README.md
- [a768642] by @thiswillbeyourgithub, 3 minutes ago:
better trash removal
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [35ef63e] by @thiswillbeyourgithub, 16 minutes ago:
less verbose test removal of temp folders
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [c149f5d] by @thiswillbeyourgithub, 30 minutes ago:
enh: delete cache dir at start of test
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [ae6f28a] by @thiswillbeyourgithub, 32 minutes ago:
minor: name of a test
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_wdoc.py
- [342ad3f] by @thiswillbeyourgithub, 39 minutes ago:
better verbose output in cost test
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_wdoc.py
- [8f511dd] by @thiswillbeyourgithub, 63 minutes ago:
fix: use mistral instead of openai when testing api from openrouter because it supports zero data retention
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_wdoc.py
- [8b9ebc2] by @thiswillbeyourgithub, 65 minutes ago:
fix: api test for ddg from the shell
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.sh
- [fd6a7e7] by @thiswillbeyourgithub, 72 minutes ago:
fix forward reference for typehinting
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [1428497] by @thiswillbeyourgithub, 72 minutes ago:
fix forgot to test api using cli script
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/run_all_tests.sh
- [22b44b4] by @thiswillbeyourgithub, 85 minutes ago:
fix forward reference type hints
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/query.py
wdoc/wdoc.py
- [15a2746] by @thiswillbeyourgithub, 89 minutes ago:
fix forward reference type hints
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/llm.py
wdoc/utils/retrievers.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/summarize.py
- [29dbf5d] by @thiswillbeyourgithub, 2 hours ago:
fix: signature wrapping for parse
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/main.py
wdoc/wdoc.py
- [7aa2ce1] by @thiswillbeyourgithub, 2 hours ago:
bump litellm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [98fd2cb] by @thiswillbeyourgithub, 2 hours ago:
bump langchain version
Signed-off-by: thiswillbeyourgithub
26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [616457c] by @thiswillbeyourgithub, 2 hours ago:
bump dependencies
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
setup.py
- [dce3c24] by @thiswillbeyourgithub, 2 hours ago:
actually use lazy import for litellm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [52985d5] by @thiswillbeyourgithub, 3 hours ago:
better startup time by defering litellm import
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/litellm_embeddings.py
wdoc/utils/embeddings.py
wdoc/utils/llm.py
wdoc/utils/loaders/shared_audio.py
wdoc/utils/misc.py
wdoc/utils/retrievers.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/summarize.py
wdoc/wdoc.py
- [559fcc0] by @thiswillbeyourgithub, 3 hours ago:
pep8
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/init.py
- [0b4c2fb] by @thiswillbeyourgithub, 3 hours ago:
defer requests import
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders/shared_audio.py
wdoc/utils/misc.py
- [78d399f] by @thiswillbeyourgithub, 3 hours ago:
type hint for multiquery retriever
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/retrievers.py
- [13dd7d1] by @thiswillbeyourgithub, 3 hours ago:
pep8
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/main.py
wdoc/utils/customs/binary_faiss_vectorstore.py
wdoc/utils/embeddings.py
wdoc/utils/env.py
wdoc/utils/interact.py
wdoc/utils/llm.py
wdoc/utils/misc.py
wdoc/utils/prompts.py
wdoc/utils/tasks/parse.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/search.py
- [6ce23d4] by @thiswillbeyourgithub, 4 hours ago:
fix import statements
Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply...
Release 3.3.1
What's new
This release focuses on improving code quality through comprehensive type hint fixes and enhanced testing infrastructure.
🔧 Fixes
-
Type Hints: Comprehensive type hint improvements across the codebase
- Binary FAISS vectorstore type hints ([e46ed4a], [ac02a65], [da864cd], [95c3705], [81b36cb], [be3f352])
- Loader function type hints ([e6fcad8], [e65abad], [b624373])
- Semantic batching type hints ([f3a5289], [dd6ad29])
- Prompt template type hints ([1b4ec86], [bc56beb])
- General type hint fixes ([d4e99fd])
-
Model Compatibility: Fixed issue where some models consider
<answer>as implying</think>([09684bb]) -
Langchain Integration: Fixed callable_chain compatibility by creating runnables without decorators ([0c89cac])
✨ Enhancements
- Type Checking: Replaced manual type checking with import hook system ([56b353a], [6b3ddab])
- Logging: Reduced verbosity of litellm logging ([9a4a69c])
- Search: Added duplicate check for DuckDuckGo search results ([f68c8a4])
🧪 Tests
- Added comprehensive test for DuckDuckGo search functionality ([7dbd3c2])
- Fixed existing CLI tests ([781f6d6])
📦 Version
- Bumped version from 3.3.0 to 3.3.1 ([0690df9])
Commits details since the last release
- [0690df9] by @thiswillbeyourgithub, 41 seconds ago:
bump version 3.3.0 -> 3.3.1
bumpver.toml
docs/source/conf.py
setup.py
wdoc/wdoc.py
- [7dbd3c2] by @thiswillbeyourgithub, 8 hours ago:
test: add test for DuckDuckGo search functionality
Co-authored-by: aider (openrouter/anthropic/claude-sonnet-4) aider@aider.chat
tests/test_wdoc.py
- [781f6d6] by @thiswillbeyourgithub, 9 hours ago:
fix: test
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
tests/test_cli.py
- [e46ed4a] by @thiswillbeyourgithub, 14 hours ago:
fix: typehint for marginal score search
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [ac02a65] by @thiswillbeyourgithub, 18 hours ago:
fix: type hint of binary faiss
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [f68c8a4] by @thiswillbeyourgithub, 19 hours ago:
add check for duplicate ddg result
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/batch_file_loader.py
- [da864cd] by @thiswillbeyourgithub, 19 hours ago:
fix: binary faiss type hints
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [9a4a69c] by @thiswillbeyourgithub, 19 hours ago:
enh: tune down the verbosity of litellm
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [e6fcad8] by @thiswillbeyourgithub, 19 hours ago:
fix: type hint of load_one_doc
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders.py
- [e65abad] by @thiswillbeyourgithub, 20 hours ago:
Revert "fix: typehint of load_one_doc"
This reverts commit f0037b54ac5ce317442e672f12e1da266b58c5c1.
wdoc/utils/loaders.py
- [b624373] by @thiswillbeyourgithub, 20 hours ago:
fix: typehint of load_one_doc
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/loaders.py
- [95c3705] by @thiswillbeyourgithub, 20 hours ago:
fix: typehints for binary faiss
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [f3a5289] by @thiswillbeyourgithub, 20 hours ago:
fix: type hints for semantic batching
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/query.py
- [d4e99fd] by @thiswillbeyourgithub, 20 hours ago:
fix: type hints
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/wdoc.py
- [81b36cb] by @thiswillbeyourgithub, 21 hours ago:
forgot some type hint for binary faiss
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [dd6ad29] by @thiswillbeyourgithub, 21 hours ago:
fix: wrong typehint in semantic_batch
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/tasks/query.py
- [09684bb] by @thiswillbeyourgithub, 21 hours ago:
fix: some models consider than implied
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/misc.py
- [0c89cac] by @thiswillbeyourgithub, 22 hours ago:
fix: actually callable_chain does not work for langchain so we have to make runnables without decorators
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/callable_runnable.py
wdoc/utils/misc.py
wdoc/utils/tasks/query.py
wdoc/wdoc.py
- [6b3ddab] by @thiswillbeyourgithub, 22 hours ago:
new: remove the ubiquitous optional_typecheck decorator
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/main.py
wdoc/utils/batch_file_loader.py
wdoc/utils/embeddings.py
wdoc/utils/interact.py
wdoc/utils/llm.py
wdoc/utils/loaders.py
wdoc/utils/logger.py
wdoc/utils/misc.py
wdoc/utils/prompts.py
wdoc/utils/retrievers.py
wdoc/utils/tasks/query.py
wdoc/utils/tasks/summarize.py
wdoc/utils/typechecker.py
wdoc/wdoc.py
- [56b353a] by @thiswillbeyourgithub, 22 hours ago:
new: neutralize manual type checking and instead use the import hook
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/init.py
wdoc/utils/customs/callable_runnable.py
wdoc/utils/misc.py
wdoc/utils/tasks/query.py
wdoc/utils/typechecker.py
wdoc/wdoc.py
- [be3f352] by @thiswillbeyourgithub, 22 hours ago:
fix: type hints in binary faiss
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/customs/binary_faiss_vectorstore.py
- [1b4ec86] by @thiswillbeyourgithub, 23 hours ago:
fix: wrong type for Prompts class
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/prompts.py
- [bc56beb] by @thiswillbeyourgithub, 23 hours ago:
add type checking to prompt template
Signed-off-by: thiswillbeyourgithub 26625900+thiswillbeyourgithub@users.noreply.github.com
wdoc/utils/prompts.py