chore: initial commit

This commit is contained in:
你的用户名
2025-11-01 21:58:31 +08:00
commit 0406b5664f
101 changed files with 20458 additions and 0 deletions

18
start_bot_v2.sh Executable file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
source ~/.bashrc
# 显示环境变量
echo "=== 环境变量检查 ==="
echo "ANTHROPIC_AUTH_TOKEN: ${ANTHROPIC_AUTH_TOKEN:0:30}..."
echo "ANTHROPIC_BASE_URL: $ANTHROPIC_BASE_URL"
echo ""
# 清理Python缓存
find . -type d -name '__pycache__' -exec rm -rf {} + 2>/dev/null
find . -name '*.pyc' -delete 2>/dev/null
# 设置代理
export ALL_PROXY=socks5://127.0.0.1:1080
# 启动Bot
python3 -u integrated_bot_ai.py 2>&1 | tee bot_running.log