mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-06-15 09:15:29 -04:00
d5de061656
Updates the requirements on [markitdown](https://github.com/microsoft/markitdown), [pydantic](https://github.com/pydantic/pydantic) and [pydantic-settings](https://github.com/pydantic/pydantic-settings) to permit the latest version. Updates `markitdown` from 0.1.5 to 0.1.6 - [Release notes](https://github.com/microsoft/markitdown/releases) - [Commits](https://github.com/microsoft/markitdown/compare/v0.1.5...v0.1.6) Updates `pydantic` to 2.13.4 - [Release notes](https://github.com/pydantic/pydantic/releases) - [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md) - [Commits](https://github.com/pydantic/pydantic/compare/v2.0...v2.13.4) Updates `pydantic-settings` to 2.14.1 - [Release notes](https://github.com/pydantic/pydantic-settings/releases) - [Commits](https://github.com/pydantic/pydantic-settings/compare/v2.0.0...v2.14.1) --- updated-dependencies: - dependency-name: markitdown dependency-version: 0.1.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python - dependency-name: pydantic dependency-version: 2.13.4 dependency-type: direct:production dependency-group: python - dependency-name: pydantic-settings dependency-version: 2.14.1 dependency-type: direct:production dependency-group: python ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
2.0 KiB
Plaintext
37 lines
2.0 KiB
Plaintext
# Optional dependencies — install only if you use the corresponding feature.
|
|
# The app handles their absence gracefully (clear error message on first use).
|
|
#
|
|
# Note: chromadb-client + fastembed moved to requirements.txt — RAG, semantic
|
|
# memory, and tool selection are core paths, so they ship by default now.
|
|
|
|
# Local speech-to-text (microphone -> text) via faster-whisper, for the
|
|
# "local" STT provider. Runs on CPU out of the box (CTranslate2 backend, no
|
|
# torch needed). Install if you want to dictate/transcribe with the mic
|
|
# without sending audio to an external endpoint.
|
|
# Optional extra: install `torch` too if you have a CUDA GPU and want
|
|
# GPU-accelerated transcription — it's auto-detected, CPU is used otherwise.
|
|
faster-whisper
|
|
|
|
# DuckDuckGo as a search provider option.
|
|
# Install if you want DDG in the search-provider dropdown.
|
|
# Alternatives: SearXNG, Brave, Tavily, Serper, Google PSE.
|
|
ddgs
|
|
|
|
# PDF form-filling feature (fillable AcroForm detection, field extraction,
|
|
# value/annotation/signature stamping, page rendering for the form overlay).
|
|
# NOTE: PyMuPDF is AGPL-3.0. Installing it brings AGPL obligations for a
|
|
# network-served app — see ACKNOWLEDGMENTS.md. The MIT core (PDF *text*
|
|
# extraction via pypdf) works without it; this only unlocks form-filling.
|
|
PyMuPDF
|
|
|
|
# Office / EPUB document text extraction (chat attachments + the personal-docs
|
|
# RAG index). markitdown (MIT, Microsoft) converts .docx/.xlsx/.pptx/.xls/.epub
|
|
# to Markdown — more token-efficient and model-legible than a raw dump. Optional
|
|
# and lazy-imported via src/markitdown_runtime.py; without it those formats fall
|
|
# back to a friendly "install to extract" banner and the core stays pure-MIT.
|
|
# Extras pull mammoth/lxml/python-pptx/pandas/openpyxl/xlrd; the base also pulls
|
|
# magika (onnxruntime), already a core dep via fastembed. We avoid the
|
|
# [all]/Azure/audio extras (cloud + heavy). Pinned to a release >30 days old per
|
|
# the dependency-age discussion in issue #485.
|
|
markitdown[docx,pptx,xlsx,xls]==0.1.6
|