├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── API.md ├── Dockerfile ├── LICENSE ├── PRIVACY.md ├── README.md ├── TRADEMARK.md ├── api_admin.go ├── api_keys.go ├── api_server.go ├── assets ├── micr0-alty-banner.png ├── micr0-alty-kawaii.png └── micr0-alty-sheet.png ├── dashboard ├── dashboard.go ├── static │ ├── banner.webp │ ├── charts.js │ └── style.css └── templates │ └── dashboard.html ├── docker-compose.yml ├── email.go ├── example.config.toml ├── gdpr_consent.go ├── go.mod ├── go.sum ├── llm_provider.go ├── locales.go ├── localizations.json ├── main.go ├── metrics.go ├── setup.go ├── transformers_server.py ├── translation_layer.go ├── videoprocessor.go └── weekly_summary.go /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/.gitignore -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/API.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/LICENSE -------------------------------------------------------------------------------- /PRIVACY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/PRIVACY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/README.md -------------------------------------------------------------------------------- /TRADEMARK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/TRADEMARK.md -------------------------------------------------------------------------------- /api_admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/api_admin.go -------------------------------------------------------------------------------- /api_keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/api_keys.go -------------------------------------------------------------------------------- /api_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/api_server.go -------------------------------------------------------------------------------- /assets/micr0-alty-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/assets/micr0-alty-banner.png -------------------------------------------------------------------------------- /assets/micr0-alty-kawaii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/assets/micr0-alty-kawaii.png -------------------------------------------------------------------------------- /assets/micr0-alty-sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/assets/micr0-alty-sheet.png -------------------------------------------------------------------------------- /dashboard/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/dashboard/dashboard.go -------------------------------------------------------------------------------- /dashboard/static/banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/dashboard/static/banner.webp -------------------------------------------------------------------------------- /dashboard/static/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/dashboard/static/charts.js -------------------------------------------------------------------------------- /dashboard/static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/dashboard/static/style.css -------------------------------------------------------------------------------- /dashboard/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/dashboard/templates/dashboard.html -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/email.go -------------------------------------------------------------------------------- /example.config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/example.config.toml -------------------------------------------------------------------------------- /gdpr_consent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/gdpr_consent.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/go.sum -------------------------------------------------------------------------------- /llm_provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/llm_provider.go -------------------------------------------------------------------------------- /locales.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/locales.go -------------------------------------------------------------------------------- /localizations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/localizations.json -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/main.go -------------------------------------------------------------------------------- /metrics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/metrics.go -------------------------------------------------------------------------------- /setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/setup.go -------------------------------------------------------------------------------- /transformers_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/transformers_server.py -------------------------------------------------------------------------------- /translation_layer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/translation_layer.go -------------------------------------------------------------------------------- /videoprocessor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/videoprocessor.go -------------------------------------------------------------------------------- /weekly_summary.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micr0-dev/Altbot/HEAD/weekly_summary.go --------------------------------------------------------------------------------