├── .gitignore ├── 001_collect_literature_info.py ├── 002_generate_classification_schema.py ├── 003_classify_literature.py ├── 004_apply_classification.py ├── README.md ├── cli.py ├── config ├── config_example.txt └── run.sh ├── docs ├── PROJECT_STRUCTURE.md ├── README.md └── README_scripts.md ├── llm_client.py ├── requirements.txt ├── scripts ├── analyze_all_items.py ├── analyze_content.py ├── analyze_hierarchy.py ├── analyze_library.py └── main_simple.py └── tests ├── test_auto_classify.py └── test_pdf_info.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/.gitignore -------------------------------------------------------------------------------- /001_collect_literature_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/001_collect_literature_info.py -------------------------------------------------------------------------------- /002_generate_classification_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/002_generate_classification_schema.py -------------------------------------------------------------------------------- /003_classify_literature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/003_classify_literature.py -------------------------------------------------------------------------------- /004_apply_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/004_apply_classification.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/cli.py -------------------------------------------------------------------------------- /config/config_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/config/config_example.txt -------------------------------------------------------------------------------- /config/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/config/run.sh -------------------------------------------------------------------------------- /docs/PROJECT_STRUCTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/docs/PROJECT_STRUCTURE.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/README_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/docs/README_scripts.md -------------------------------------------------------------------------------- /llm_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/llm_client.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/analyze_all_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/scripts/analyze_all_items.py -------------------------------------------------------------------------------- /scripts/analyze_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/scripts/analyze_content.py -------------------------------------------------------------------------------- /scripts/analyze_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/scripts/analyze_hierarchy.py -------------------------------------------------------------------------------- /scripts/analyze_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/scripts/analyze_library.py -------------------------------------------------------------------------------- /scripts/main_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/scripts/main_simple.py -------------------------------------------------------------------------------- /tests/test_auto_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/tests/test_auto_classify.py -------------------------------------------------------------------------------- /tests/test_pdf_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mor-Li/zotero-llm-classify/HEAD/tests/test_pdf_info.py --------------------------------------------------------------------------------