---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_faq library. ---------------------------------------------------------------------- ## Functions Public functions answer(question_id: int) -> str Retrieve the answer for a specific question by ID. Parameters ---------- question_id : int The numeric ID of the question. Returns ------- str The answer text for the given question ID. Examples -------- >>> answer(1) 'Use pip install to get started.' ask(question: str) -> str Ask a question and get a response. Parameters ---------- question : str The question to ask. Returns ------- str A response to the question. Examples -------- >>> ask("How do I install?") 'See the installation guide.'