tts_health

Check TTS API Health

Description

Checks whether the TTS backend is reachable by trying common health endpoints.

Usage

1tts_health()

Value

A list with components:

  • ok: Logical. TRUE if the server is reachable.
  • status: Character. A human-readable status message.
  • raw: The raw response from the server (if any).

Examples

1set_tts_base("http://localhost:4123")
2h <- tts_health()
3if (h$ok) {
4  message("Server is ready!")
5}