├── .chainlit └── config.toml ├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── chainlit.md ├── docker-compose.yml ├── poetry.lock ├── public ├── avatar.png ├── favicon.png ├── logo_dark.png └── logo_light.png ├── pyproject.toml ├── tests └── test_app.py └── yt_chat ├── __init__.py ├── app.py ├── config.py ├── config_prompts.py ├── core ├── __init__.py ├── answer.py └── summarize.py ├── internal_state.py └── utils └── youtube.py /.chainlit/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/.chainlit/config.toml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/README.md -------------------------------------------------------------------------------- /chainlit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/chainlit.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/poetry.lock -------------------------------------------------------------------------------- /public/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/public/avatar.png -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/public/logo_dark.png -------------------------------------------------------------------------------- /public/logo_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/public/logo_light.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /yt_chat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yt_chat/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/app.py -------------------------------------------------------------------------------- /yt_chat/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/config.py -------------------------------------------------------------------------------- /yt_chat/config_prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/config_prompts.py -------------------------------------------------------------------------------- /yt_chat/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yt_chat/core/answer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/core/answer.py -------------------------------------------------------------------------------- /yt_chat/core/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/core/summarize.py -------------------------------------------------------------------------------- /yt_chat/internal_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/internal_state.py -------------------------------------------------------------------------------- /yt_chat/utils/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fonction-Labs/yt-chat/HEAD/yt_chat/utils/youtube.py --------------------------------------------------------------------------------