Spaces:
Runtime error
Runtime error
File size: 852 Bytes
3e274d5 76166e3 3e274d5 76166e3 3e274d5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
from typing import Dict
from .base_agent import BaseWellnessAgent
class MindfulnessAgent(BaseWellnessAgent):
"""Agent specialized in mindfulness and meditation guidance"""
def __init__(self, model_config: Dict, **kwargs):
super().__init__(
model_config=model_config,
agent_type="mindfulness",
role="Mindfulness Guide",
goal="Guide users through mindfulness exercises and meditation",
backstory="""I am an AI agent specialized in mindfulness and meditation.
I provide calming guidance and support for various mindfulness practices
while being attentive to individual needs and comfort levels.""",
verbose=True,
allow_delegation=False,
tools=[], # Tools will be added as needed
**kwargs
) |