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:
parent
a8de1961db
commit
0fb8ba2484
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue