File size: 251 Bytes
4adef30
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# assist/chat.py

def chat(question: str) -> str:
    """
    Chat plugin stub: echoes back what you asked.
    """
    if not question.strip():
        return "Please enter a question above."
    return f"Chat plugin stub received: “{question}”"