Spaces:
Sleeping
Sleeping
File size: 14,406 Bytes
1b63e6c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 |
# config.py
import os
from dotenv import load_dotenv
load_dotenv()
class Config:
DEBUG = os.getenv('DEBUG', 'False').lower() == 'true'
LOG_LEVEL = os.getenv('LOG_LEVEL', 'INFO')
MODELS_CACHE_DIR = os.getenv('MODELS_CACHE_DIR', './models')
HISTORY_FILE = os.getenv('HISTORY_FILE', 'learning_path_history.json')
MAX_AUDIO_LENGTH = int(os.getenv('MAX_AUDIO_LENGTH', '600')) # segundos
MAX_TEXT_LENGTH = int(os.getenv('MAX_TEXT_LENGTH', '1000'))
SUPPORTED_AUDIO_FORMATS = ['.wav', '.mp3', '.ogg', '.flac']
# Configurações de visualização
MAX_TOPICS = int(os.getenv('MAX_TOPICS', '10'))
MAX_SUBTOPICS = int(os.getenv('MAX_SUBTOPICS', '5'))
FIGURE_DPI = int(os.getenv('FIGURE_DPI', '300'))
# Configurações de modelo
MODEL_TRANSCRIBER = os.getenv('MODEL_TRANSCRIBER', 'openai/whisper-base')
MODEL_GENERATOR = os.getenv('MODEL_GENERATOR', 'gpt2')
# Configurações de retry
MAX_RETRIES = int(os.getenv('MAX_RETRIES', '3'))
RETRY_DELAY = int(os.getenv('RETRY_DELAY', '1'))
# utils.py
import logging
import json
from typing import Dict, Any, Optional, List, Tuple
import os
from config import Config
class Utils:
@staticmethod
def setup_logging() -> logging.Logger:
logger = logging.getLogger("LearningPathGenerator")
logger.setLevel(getattr(logging, Config.LOG_LEVEL))
# Configuração do arquivo de log
handler = logging.FileHandler("app.log")
formatter = logging.Formatter(
'%(asctime)s - %(name)s - %(levelname)s - %(message)s'
)
handler.setFormatter(formatter)
logger.addHandler(handler)
return logger
@staticmethod
def save_json(data: Dict[str, Any], filename: str) -> bool:
try:
with open(filename, 'w', encoding='utf-8') as f:
json.dump(data, f, ensure_ascii=False, indent=2)
return True
except Exception as e:
logging.error(f"Erro ao salvar JSON: {str(e)}")
return False
@staticmethod
def load_json(filename: str) -> Optional[Dict[str, Any]]:
try:
with open(filename, 'r', encoding='utf-8') as f:
return json.load(f)
except Exception as e:
logging.error(f"Erro ao carregar JSON: {str(e)}")
return None
# validators.py
import os
import soundfile as sf
from typing import Tuple, Optional
from config import Config
class Validators:
@staticmethod
def validate_audio_file(file_path: str) -> Tuple[bool, Optional[str]]:
try:
if not os.path.exists(file_path):
return False, "Arquivo não encontrado"
# Verifica extensão
ext = os.path.splitext(file_path)[1].lower()
if ext not in Config.SUPPORTED_AUDIO_FORMATS:
return False, f"Formato não suportado. Use: {Config.SUPPORTED_AUDIO_FORMATS}"
# Verifica conteúdo
data, samplerate = sf.read(file_path)
duration = len(data) / samplerate
if duration > Config.MAX_AUDIO_LENGTH:
return False, f"Áudio muito longo. Máximo: {Config.MAX_AUDIO_LENGTH}s"
return True, None
except Exception as e:
return False, f"Erro na validação: {str(e)}"
@staticmethod
def validate_path_name(name: str) -> Tuple[bool, Optional[str]]:
if not name:
return True, None
if len(name) > 100:
return False, "Nome muito longo. Máximo: 100 caracteres"
if not all(c.isprintable() for c in name):
return False, "Nome contém caracteres inválidos"
return True, None
# models.py
from transformers import pipeline
import torch
from typing import Dict, Optional
import logging
from config import Config
class ModelManager:
def __init__(self):
self.logger = logging.getLogger("ModelManager")
self.models: Dict[str, Any] = {}
self._initialize_models()
def _initialize_models(self):
try:
# Verifica GPU
device = 0 if torch.cuda.is_available() else -1
self.models["transcriber"] = pipeline(
"automatic-speech-recognition",
model=Config.MODEL_TRANSCRIBER,
device=device
)
self.models["generator"] = pipeline(
"text-generation",
model=Config.MODEL_GENERATOR,
device=device
)
except Exception as e:
self.logger.error(f"Erro ao inicializar modelos: {str(e)}")
raise
def get_model(self, name: str):
return self.models.get(name)
# visualization.py
import networkx as nx
import matplotlib.pyplot as plt
from io import BytesIO
import base64
from typing import Dict, List
from config import Config
class Visualizer:
@staticmethod
def create_mind_map(topics: List[str],
subtopics: Dict[str, List[str]]) -> Optional[str]:
try:
plt.figure(figsize=(15, 10), dpi=Config.FIGURE_DPI)
G = nx.DiGraph()
# Adiciona nós e arestas
for i, topic in enumerate(topics[:Config.MAX_TOPICS]):
G.add_node(topic, level=i)
if topic in subtopics:
for subtopic in subtopics[topic][:Config.MAX_SUBTOPICS]:
subtopic_name = f"{topic}:\n{subtopic}"
G.add_node(subtopic_name, level=i)
G.add_edge(topic, subtopic_name)
if i > 0:
G.add_edge(topics[i-1], topic)
# Layout e estilo
pos = nx.spring_layout(G, k=2, iterations=50)
# Desenha nós principais
nx.draw_networkx_nodes(G, pos,
nodelist=[n for n in G.nodes() if ":" not in n],
node_color='lightblue',
node_size=3000)
# Desenha subtópicos
nx.draw_networkx_nodes(G, pos,
nodelist=[n for n in G.nodes() if ":" in n],
node_color='lightgreen',
node_size=2000)
# Desenha arestas e labels
nx.draw_networkx_edges(G, pos, edge_color='gray', arrows=True)
nx.draw_networkx_labels(G, pos, font_size=8, font_weight='bold')
# Salva imagem
buf = BytesIO()
plt.savefig(buf, format='png', bbox_inches='tight')
buf.seek(0)
plt.close()
return f"data:image/png;base64,{base64.b64encode(buf.getvalue()).decode()}"
except Exception as e:
logging.error(f"Erro na visualização: {str(e)}")
return None
# main.py
import gradio as gr
from typing import Dict, Any
import sys
import logging
from config import Config
from utils import Utils
from validators import Validators
from models import ModelManager
from visualization import Visualizer
class LearningPathGenerator:
def __init__(self):
self.logger = Utils.setup_logging()
self.model_manager = ModelManager()
self.history_file = Config.HISTORY_FILE
# Inicialização do histórico
if not os.path.exists(self.history_file):
Utils.save_json([], self.history_file)
def process_audio(self,
audio_path: str,
path_name: str = "",
difficulty: str = "intermediate",
include_resources: bool = True) -> Dict[str, Any]:
try:
# Validação do áudio
valid_audio, audio_error = Validators.validate_audio_file(audio_path)
if not valid_audio:
return self._error_response(audio_error)
# Validação do nome
valid_name, name_error = Validators.validate_path_name(path_name)
if not valid_name:
return self._error_response(name_error)
# Transcrição
transcriber = self.model_manager.get_model("transcriber")
transcription = transcriber(audio_path)["text"]
# Geração da análise
generator = self.model_manager.get_model("generator")
analysis = self._generate_analysis(generator, transcription, difficulty)
# Criação do mapa mental
topics, subtopics = self._extract_topics(analysis)
mind_map = Visualizer.create_mind_map(topics, subtopics)
# Salva no histórico
if path_name:
self._save_to_history(transcription, analysis, path_name)
return {
"transcription": transcription,
"analysis": analysis,
"mind_map": mind_map
}
except Exception as e:
self.logger.error(f"Erro no processamento: {str(e)}")
return self._error_response(str(e))
def create_interface(self):
with gr.Blocks(theme=gr.themes.Soft()) as app:
gr.Markdown("""
# 🎓 Gerador de Trilha de Aprendizado
Carregue um arquivo de áudio descrevendo seus objetivos de aprendizado
e receba uma trilha personalizada com recursos!
""")
with gr.Tab("Gerar Trilha"):
with gr.Row():
with gr.Column(scale=2):
audio_input = gr.Audio(
type="filepath",
label="Upload do Áudio",
description="Grave ou faça upload de um áudio descrevendo seus objetivos"
)
with gr.Row():
path_name = gr.Textbox(
label="Nome da Trilha",
placeholder="Dê um nome para sua trilha (opcional)"
)
difficulty = gr.Dropdown(
choices=["iniciante", "intermediário", "avançado"],
value="intermediário",
label="Nível de Dificuldade"
)
with gr.Row():
include_resources = gr.Checkbox(
label="Incluir Recursos Recomendados",
value=True
)
process_btn = gr.Button(
"Gerar Trilha de Aprendizado",
variant="primary"
)
with gr.Row():
text_output = gr.Textbox(
label="Transcrição do Áudio",
lines=4
)
with gr.Row():
analysis_output = gr.Textbox(
label="Análise e Trilha de Aprendizado",
lines=10
)
with gr.Row():
mind_map_output = gr.Image(
label="Mapa Mental da Trilha",
elem_id="mind_map"
)
with gr.Tab("Histórico"):
gr.Markdown("Trilhas Anteriores")
history_table = gr.Dataframe(
headers=["Data", "Nome", "Transcrição", "Análise"],
label="Histórico de Trilhas"
)
refresh_btn = gr.Button("Atualizar Histórico")
# Event handlers
process_btn.click(
fn=self.process_audio,
inputs=[audio_input, path_name, difficulty, include_resources],
outputs={
"transcription": text_output,
"analysis": analysis_output,
"mind_map": mind_map_output
}
)
refresh_btn.click(
fn=self._load_history,
outputs=[history_table]
)
return app
def _generate_analysis(self,
generator,
text: str,
difficulty: str) -> str:
prompt = f"""
Com base no seguinte texto, crie uma trilha de aprendizado detalhada
para nível {difficulty}:
{text[:Config.MAX_TEXT_LENGTH]}
Trilha de aprendizado:
"""
response = generator(
prompt,
max_length=300,
num_return_sequences=1
)[0]["generated_text"]
if include_resources:
response += self._generate_resources()
return response
def _generate_resources(self) -> str:
return """
Recursos Recomendados:
1. Livros:
- "Guia Essencial do Tema"
- "Técnicas Avançadas"
2. Cursos Online:
- Coursera: "Especialização no Tema"
- edX: "Curso Avançado"
3. Recursos Práticos:
- Tutoriais interativos
- Exercícios práticos
- Projetos do mundo real
"""
def _error_response(self, error_msg: str) -> Dict[str, Any]:
return {
"transcription": f"Erro: {error_msg}",
"analysis": "Não foi possível gerar a análise devido a um erro.",
"mind_map": None
}
# Execução do app
if __name__ == "__main__":
try:
generator = LearningPathGenerator()
app = generator.create_interface()
app.launch(debug=Config.DEBUG)
except Exception as e: |