Spaces:
Running
Running
File size: 329 Bytes
723e2e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from crewai import Agent
from uteis.groq_api import grocllm
def chamaCoach():
return Agent(
role='Motivador',
goal='Escrever uma mensagem motivacional para o estudante.',
backstory='Você é um coach motivacional com experiência em ajudar estudantes a manterem o foco.',
llm=grocllm
)
|