fix: add missing beautifulsoup4 dependency for audio article support

- Add beautifulsoup4>=4.12.0 to requirements.txt
- Required by utils/helpers.py _extract_audio_content() function
- Used for parsing HTML in audio message extraction (line 286)
- Fixes 'No module named bs4' error when processing audio articles

This dependency was introduced when audio article support was added
but was not included in requirements.txt, causing runtime errors.

Made-with: Cursor
This commit is contained in:
tmwgsicp 2026-03-24 03:29:15 +08:00
parent a8de1961db
commit 0fb8ba2484
1 changed files with 1 additions and 0 deletions

View File

@ -4,3 +4,4 @@ pydantic==2.5.0
httpx==0.25.2
python-dotenv==1.0.0
curl_cffi>=0.7.0
beautifulsoup4>=4.12.0