# LLM Prompt for Documentation ## Documentation ### Hana #### statusResponse **Type Annotation** ```roc U16 -> Response ``` **Description** Create a HTTP response with the required status code. #### textResponse **Type Annotation** ```roc U16, Str -> Response ``` **Description** Create a HTTP response with text content. The `content-type` header will be set to `text/plain`. #### jsonResponse **Type Annotation** ```roc U16, List U8 -> Response ``` **Description** Create a HTTP response with JSON content. The `content-type` header will be set to `application/json`. #### pathSegments **Type Annotation** ```roc Str -> List Str ``` **Description** Get the path segments from the request url.