├── .gitignore ├── Dockerfile ├── HN_Summary.jpg ├── LICENSE ├── Makefile ├── README.md ├── examples.md ├── requirements.txt └── src ├── api.py ├── db.py ├── dbmodels.py ├── download_hf_models_at_buildtime.py ├── dup_filter.py ├── extract_metadata.py ├── github_api.py ├── gpt_gateway.py ├── hnapi.py ├── migrate_collection.py ├── pdf_text.py ├── retry.py ├── show_prompt.py ├── summarize.py ├── telegram_bot.py └── update_summary.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/Dockerfile -------------------------------------------------------------------------------- /HN_Summary.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/HN_Summary.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/README.md -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/examples.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/api.py -------------------------------------------------------------------------------- /src/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/db.py -------------------------------------------------------------------------------- /src/dbmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/dbmodels.py -------------------------------------------------------------------------------- /src/download_hf_models_at_buildtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/download_hf_models_at_buildtime.py -------------------------------------------------------------------------------- /src/dup_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/dup_filter.py -------------------------------------------------------------------------------- /src/extract_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/extract_metadata.py -------------------------------------------------------------------------------- /src/github_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/github_api.py -------------------------------------------------------------------------------- /src/gpt_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/gpt_gateway.py -------------------------------------------------------------------------------- /src/hnapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/hnapi.py -------------------------------------------------------------------------------- /src/migrate_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/migrate_collection.py -------------------------------------------------------------------------------- /src/pdf_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/pdf_text.py -------------------------------------------------------------------------------- /src/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/retry.py -------------------------------------------------------------------------------- /src/show_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/show_prompt.py -------------------------------------------------------------------------------- /src/summarize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/summarize.py -------------------------------------------------------------------------------- /src/telegram_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/telegram_bot.py -------------------------------------------------------------------------------- /src/update_summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiggy-ai/hn_summary/HEAD/src/update_summary.py --------------------------------------------------------------------------------