DigitalIslamicChatbotAPI / chatbot /chatbot_agent.py
Tahasaif3's picture
Update chatbot/chatbot_agent.py
960a0a3 verified
raw
history blame contribute delete
555 Bytes
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)
)