File size: 273 Bytes
221ba30
 
 
88f0a0f
221ba30
88f0a0f
 
 
1
2
3
4
5
6
7
8
9
class BasicAgent:
    def __init__(self):
        print("BasicAgent initialized.")
        
    def __call__(self, question: str) -> str:
        print(f"Answering question: {question}")
        # Implement your answer logic here
        return "This is a default answer."