ProletarianDictator [none/use name]

  • 0 Posts
  • 86 Comments
Joined 2 years ago
cake
Cake day: December 21st, 2022

help-circle








  • Fairly Oddparents was distilled idealism.

    The plot: Upper middle class suburbanite kid is given two magic wish granters because his baby sitter was kinda mean.

    The primary antagonisms:

    1. His wishes violate some bourgeois set of rules.
    2. His wishes are granted, but bite him in the ass.

    The primary lessons:

    1. Follow the rules, never question them, only recourse is trying to lawyer around them with technicalities.
    2. Never want better things, lest it upset the status quo.
    3. Action is never an acceptable way of getting what you want, only wish fulfillment.
    4. Never reveal that you possess methods capable of improving the lives of others.

    I consider this show a training program to get children to become good liberals. My lil bro used to watch this show as a kid, and I was too young / libbed to express my distaste for it.










  • You don’t need to use Whisper, I got some names mixed up. I was thinking of wyoming-faster-whisper which uses the FOSS speech to text system faster-whisper, but there are others that can be used.

    Edited my original comment to fix that.

    Wyoming is a protocol for voice assistants.

    It ties together:

    • speech recognition services (faster-whisper, vosk, whisper.cpp, OpenAI’s Whisper API)
    • text to speech services (piper)
    • wake word detection services (openWakeWord, snowboy, porcupine1)
    • intent handling services
    • intent recognition services

    Home Assistant can interact with that protocol. I think the addons run servers for various components used by the wyoming protocol server that the integration can use, but I run it separate from Home Assistant, so idk.

    Not sure what futo is capable of, but you can use anything that can communicate with a wyoming server. I’m willing to wager you can, but idk.

    OpenAI’s ChatGPT API and LLM models are orthogonal to this, but probably could be used as an intent or as the fallback when no other intent was recognized. So I’m pretty sure you could link up getting a response from OpenAI or any other LLM API, but I haven’t tried setting that up for myself yet. wyoming-handle-external lets you pipe the input text to the stdin of whatever program you give it and responds with the program’s stdout, so you could definitely use this to pass it to OpenAI or Ollama.