Skip to content

Latest commit

 

History

History
33 lines (33 loc) · 838 Bytes

fold_structure.md

File metadata and controls

33 lines (33 loc) · 838 Bytes

YouTube_Subscription_Search/ │ ├── db_operations/ │ ├── init.py │ ├── create_db.py │ └── update_db.py │ ├── youtube/ │ ├── init.py │ ├── authentication.py │ ├── channel_operations.py │ ├── subscription_operations.py │ └── video_operations.py | ├── utilities/ │ ├── init.py │ ├── filesystem.py │ ├── json_operations.py │ └── text_processing.py │ ├── models/ # Pre-trained models │ └── sentence_transformers/ | ├── app/ # Front-end streamlit app
│ └── front_end.py | ├── llm_prompt/ │ ├── prompt/ │ └── llm_chain/ | ├── main/ │ ├── init.py | └── main.py # The main script to run the project