├── .dockerignore ├── .env.example ├── .github └── workflows │ └── linting.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── agents.py ├── app.py ├── compose.yaml ├── conda_env.sh ├── environment.yml ├── run.sh ├── tools.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/linting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/.github/workflows/linting.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/README.md -------------------------------------------------------------------------------- /agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/agents.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/app.py -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/compose.yaml -------------------------------------------------------------------------------- /conda_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/conda_env.sh -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/environment.yml -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/run.sh -------------------------------------------------------------------------------- /tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/tools.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AstraBert/e-library-agent/HEAD/utils.py --------------------------------------------------------------------------------