├── .github └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── AGENTS.md ├── LICENSE ├── README.md ├── llm_arxiv.py ├── pyproject.toml └── tests ├── pytest.py └── test_arxiv.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/.gitignore -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/AGENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/README.md -------------------------------------------------------------------------------- /llm_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/llm_arxiv.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/tests/pytest.py -------------------------------------------------------------------------------- /tests/test_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agustif/llm-arxiv/HEAD/tests/test_arxiv.py --------------------------------------------------------------------------------