├── .env.example ├── .github └── workflows │ └── docker.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── bot.png └── script.jpg ├── docker-compose.yml ├── pdm.lock ├── pyproject.toml ├── requirements.txt └── src ├── constant.py ├── datasource ├── __init__.py ├── binance_api.py └── stock.py ├── engine ├── __init__.py └── template.html ├── llm ├── __init__.py ├── claude_llm.py ├── definition.py └── openai_llm.py ├── main.py └── telegram └── __init__.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/README.md -------------------------------------------------------------------------------- /assets/bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/assets/bot.png -------------------------------------------------------------------------------- /assets/script.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/assets/script.jpg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pdm.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/pdm.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/constant.py -------------------------------------------------------------------------------- /src/datasource/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/datasource/__init__.py -------------------------------------------------------------------------------- /src/datasource/binance_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/datasource/binance_api.py -------------------------------------------------------------------------------- /src/datasource/stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/datasource/stock.py -------------------------------------------------------------------------------- /src/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/engine/__init__.py -------------------------------------------------------------------------------- /src/engine/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/engine/template.html -------------------------------------------------------------------------------- /src/llm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/llm/__init__.py -------------------------------------------------------------------------------- /src/llm/claude_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/llm/claude_llm.py -------------------------------------------------------------------------------- /src/llm/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/llm/definition.py -------------------------------------------------------------------------------- /src/llm/openai_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/llm/openai_llm.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/main.py -------------------------------------------------------------------------------- /src/telegram/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BennyThink/AICryptoBot/HEAD/src/telegram/__init__.py --------------------------------------------------------------------------------