--- title: akira sdk: docker emoji: 🚀 colorFrom: blue colorTo: purple --- # 🤖 AKIRA-SOFTEDGE — IA Avançada Multi-Modal **Agente IA conversacional integrado com WhatsApp via Baileys + Mistral/Gemini + CellCog** ## ✨ Novidades ### 🎯 CellCog Integration (Maio 2026) AKIRA-SOFTEDGE agora integra **CellCog**, a plataforma nº1 para IA multi-modal: | Skill | Função | Status | |-------|--------|--------| | 📸 **generate_image** | Geração de imagens (Flux + CellCog) | ✅ Padrão | | 🎬 **generate_video** | Produção de vídeos cinematográficos | 🔒 Premium | | 🎙️ **generate_audio** | Síntese de áudio/voz | 🔒 Premium | | 🔬 **research_advanced** | Pesquisa profunda multi-fonte | 🔒 Premium | | 📊 **analyze_data** | Análise de dados com ML | 🔒 Premium | **Ver mais**: [CELLCOG_SKILLS.md](CELLCOG_SKILLS.md) ## 🚀 Quick Start ### 1. Configuração Local ```bash # Clonar repositório git clone https://github.com/seu-repo/akira-softedge.git cd akira-softedge # Criar .env cp .env.example .env # Preencher: MISTRAL_API_KEY, GEMINI_API_KEY, CELLCOG_API_KEY (opcional) # Instalar dependências pip install -r requirements.txt # Rodar localmente python main.py ``` ### 2. Docker (Production) ```bash docker-compose up --build # Ou via Railway/Heroku ``` ### 3. WhatsApp Integration Escanear QR Code em: `http://localhost:7860/qr` ## 🛠️ Arquitetura ``` ┌─────────────────┐ │ WhatsApp Bot │ (Baileys) └────────┬────────┘ │ HTTP POST ↓ ┌─────────────────────────────┐ │ AKIRA API (/akira endpoint) │ (Flask/Python) ├─────────────────────────────┤ │ • Message Processing │ │ • Context Management │ │ • Skill Execution │ │ • Multi-Modal Integration │ └────────┬────────┬────────────┘ │ │ ↓ ↓ Mistral CellCog (LLM) (Media) ``` ## 📚 Documentação - [CELLCOG_SKILLS.md](CELLCOG_SKILLS.md) — Guia completo de skills multi-modal - [QUICK_START_LSTM.md](QUICK_START_LSTM.md) — Setup com LSTM - [README_LSTM_SYSTEM.md](README_LSTM_SYSTEM.md) — Contexto de memória ## 💡 Exemplos de Uso ### Geração de Imagem ``` Usuário: "Desenha um astronauta em Marte" AKIRA: [Gera imagem via CellCog/Flux] ``` ### Pesquisa Avançada ``` Usuário: "Pesquisa em profundidade IA 2026" AKIRA: [Research Cog retorna 50+ fontes analisadas] ``` ### Análise de Dados ``` Usuário: [Envia CSV de vendas] AKIRA: "Analisa com predictive" → [Retorna gráficos + previsões ML] ``` ## 🔑 Variáveis de Ambiente ```env # LLM Principal MISTRAL_API_KEY=xxx GEMINI_API_KEY=xxx # Multi-Modal (Opcional) CELLCOG_API_KEY=xxx CELLCOG_BASE_URL=https://api.cellcog.ai/v1 # WhatsApp/Data DATA_DIR=/tmp/akira_data API_PORT=7860 ``` ## 📦 Stack Tecnológico - **Backend**: Python 3.10+ (Flask, AsyncIO) - **LLM**: Mistral/Gemini - **WhatsApp**: Baileys (Node.js) - **Media**: CellCog, Pollinations (Flux fallback) - **Storage**: SQLite + Redis (opcional) - **Deploy**: Docker, Railway, Hugging Face Spaces ## 🤝 Contribuindo 1. Fork o repositório 2. Crie uma branch: `git checkout -b feature/sua-feature` 3. Commit: `git commit -m "feat: sua mudança"` 4. Push: `git push origin feature/sua-feature` 5. Abra um Pull Request ## 📞 Suporte - **Issues**: GitHub Issues - **Docs**: https://seu-docs.com - **CellCog**: https://docs.cellcog.ai/ ## 📄 Licença MIT License — Veja [LICENSE](LICENSE) para detalhes --- **Última atualização**: Maio 2026 **Versão**: v21.0 (CellCog Integration) **Status**: ✅ Production Ready