fukurou's latest activity

  • fukurou
    fukurou replied to the thread 👨‍💻 dev F sharp port.
    module LivinGrimorie // Define the AbsDictionaryDB class type AbsDictionaryDB() = member val Save: string -> string -> unit = fun _...
  • fukurou
    module AbsDictionaryDB // Define the AbsDictionaryDB class type AbsDictionaryDB() = member val Save: string -> string -> unit = fun...
  • fukurou
    fukurou replied to the thread cts ports.
    CTS Methods Ported from Java to Swift 1/5 - AddContinuousSkill func addContinuousSkill(skill: Skill) { if isThinking { return }...
  • fukurou
    fukurou replied to the thread cts ports.
    CTS Methods Ported from Java to JavaScript 1/5 - AddContinuousSkill function addContinuousSkill(skill) { if (this.isThinking)...
  • fukurou
    fukurou replied to the thread cts ports.
    CTS Methods Ported from Java to C# 1/5 - AddContinuousSkill public void AddContinuousSkill(Skill skill) { if (this.IsThinking)...
  • fukurou
    fukurou replied to the thread cts ports.
    CTS Methods Ported from Java to VB.NET 1/5 - AddContinuousSkill Public Sub AddContinuousSkill(skill As Skill) If Me.IsThinking Then...
  • fukurou
    fukurou replied to the thread cts ports.
    1/5 def add_continuous_skill(self, skill): if self.is_thinking: return skill.set_kokoro(self.kokoro)...
  • fukurou
    fukurou posted the thread cts ports in chit chat.
    public void addContinuousSkill(Skill skill) { if (this.isThinking) { return; } skill.setKokoro(this.kokoro)...
  • fukurou
    fukurou replied to the thread new STT code.
    premode: import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23...
  • fukurou
    fukurou replied to the thread new STT code.
  • fukurou
    fukurou replied to the thread new STT code.
    class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5...
  • fukurou
    fukurou replied to the thread new STT code.
    the sync version seems more reliable: class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE =...
  • fukurou
    fukurou replied to the thread new STT code.
    1 piece version import whisper import pyaudio import numpy as np import re import atexit from threading import Event from...
  • fukurou
    fukurou replied to the thread new STT code.
    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain...
  • fukurou
    fukurou replied to the thread new STT code.
    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain...
Top