Recent content by the living tribunal

  1. the living tribunal

    Zgc robot forum 2025

  2. the living tribunal

    [MEDIA]

  3. the living tribunal

    new STT code

    It will need a busy flag to prevent listening while already listening
  4. the living tribunal

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum speech duration to process exit_event = Event() # Initialize PyAudio...
  5. the living tribunal

    new STT code

    With atexit cleanup import whisper import pyaudio import numpy as np import re import atexit from threading import Event # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum speech duration to process exit_event = Event() #...
  6. the living tribunal

    [MEDIA]

  7. the living tribunal

    Locally run LLM in python

    🚀 Step 1: Install Dependencies Open a terminal and run: pip install transformers torch sentencepiece (This installs the necessary libraries to run an LLM.) 📥 Step 2: Download the Model Without Git 1. Go to Hugging Face and search for a model like Llama 3, GPT-J, or Mistral. 2. Click on the...
  8. the living tribunal

    [MEDIA]

  9. the living tribunal

    👨‍💻 dev sensory skills

    my_string = "" if bool(my_string): # Efficient and concise print("The string is not empty.") else: print("The string is empty.")
  10. the living tribunal

    👨‍💻 dev sensory skills

    from functools import singledispatch @singledispatch def think(): print("I'm thinking deeply...") @think.register def _(arg: str): print(f"I'm thinking about '{arg}'.") # To overload, you need to call the registered version with an argument think() # Output: TypeError...
  11. the living tribunal

    Pokemon legends za looks like ass

    Shit game. Ugly female characters prudishly clothed with blah haor color and asexual body type. Gameplay looks boring as shit
  12. the living tribunal

    Python deepseek locally

    @fukurou
  13. the living tribunal

    Python deepseek locally

    Step 1: Install Ollama Ollama is a platform that allows you to run AI models offline on your computer. Here’s how you can install it on Windows: Visit Ollama's official website. Download the Windows executable file (.exe) from the website. Double-click the downloaded file to start the...
Top