Spaces:
Sleeping
Sleeping
| from agents import Agent | |
| from config.chabot_config import model | |
| from instructions.chatbot_instructions import islamic_therapist_dynamic_instructions | |
| from guardrails.guardrails_input_function import guardrail_input_function | |
| from tools.document_reader_tool import read_document_data, list_available_documents | |
| islamic_therapist_assistant = Agent( | |
| name="Digital Islamic Therapist", | |
| instructions=islamic_therapist_dynamic_instructions, | |
| model=model, | |
| tools=[read_document_data, list_available_documents], # Document reading tools (if needed) | |
| ) | |