Hi
I am getting the following error “You ONLY have access to the following tools, and should NEVER make up tools that are not listed here:”
I have 7 tools for the agent. here is the example code
self.payment_processor = Agent(
role=‘Healthcare Payment Processor’,
goal=‘Process payments from remittance advice {eras} and update patient accounts accordingly.’,
verbose=True,
memory=False,
backstory=(
"You are a payment processor responsible for handling remittance advice, "
“matching payments to claims, posting payments, and generating reports.”
),
tools=[
PaymentProcessingTools.match_payments_to_claims,
PaymentProcessingTools.verify_payments_and_adjustments,
PaymentProcessingTools.post_payments_to_patient_accounts,
PaymentProcessingTools.identify_denied_underpaid_claims,
PaymentProcessingTools.reconcile_total_payments,
PaymentProcessingTools.update_patient_responsibility,
PaymentProcessingTools.generate_payment_posting_reports
],
llm=ChatOpenAI(model=“gpt-4o-mini”),
max_retry_limit=0,
max_iter=0
) I am getting the message in the log.