Search results

  1. fukurou

    cts ports

    1/5 def add_continuous_skill(self, skill): if self.is_thinking: return skill.set_kokoro(self.kokoro) self.cts_skills.append(skill) 2/5 def clear_continuous_skills(self): if self.is_thinking: return self.cts_skills.clear() 3/5 def...
  2. fukurou

    cts ports

    public void addContinuousSkill(Skill skill) { if (this.isThinking) { return; } skill.setKokoro(this.kokoro); this.cts_skills.add(skill); } public void clearContinuousSkills() { if (this.isThinking) { return; } this.cts_skills.clear(); } public void...
  3. fukurou

    new STT code

    premode: import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain, Skill """ cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install openai-whisper pyaudio numpy wave """...
  4. fukurou

    new STT code

  5. fukurou

    new STT code

    class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 exit_event = Event() model = whisper.load_model("base") p = pyaudio.PyAudio() stream = p.open( format=FORMAT, channels=CHANNELS...
  6. fukurou

    new STT code

    the sync version seems more reliable: class DiSTTSync(Skill): CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 exit_event = Event() model = whisper.load_model("base") p = pyaudio.PyAudio() stream = p.open(...
  7. fukurou

    new STT code

    1 piece version import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash """ cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install...
  8. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # befor runing the code: ''' cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip...
  9. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # befor runing the code: ''' cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip...
  10. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum...
  11. fukurou

    new STT code

    import whisper import pyaudio import numpy as np import re import atexit from threading import Event from LivinGrimoire23 import Brain from async_skills import ShorniSplash # Audio Settings CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNELS = 1 RATE = 16000 MIN_ACTIVE_SECONDS = 0.5 # Minimum...
  12. fukurou

    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() # Global variables model =...
  13. fukurou

    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() # Global variables model =...
  14. fukurou

    new STT code

    cmd winget install ffmpeg check if it installed ok: ffmpeg -version in python terminal: pip install openai-whisper pyaudio numpy wave you may also need: pip install openai-whisper pyaudio numpy pip install pipwin pipwin install pyaudio import whisper import pyaudio import numpy as np import...
  15. fukurou

    [MEDIA]

  16. fukurou

    deepseek n shit

    like to engage the time skill I need to say something like "what is the time" but her burp skill for example works on its own, she suddenly might burp
  17. fukurou

    deepseek n shit

    oh yeah, fully automatic. once a skill is added, it just works based on input. many skills are automatic, some are triggered. she can talk on her own volition for example.
  18. fukurou

    deepseek n shit

    automate?
  19. fukurou

    deepseek n shit

    no deepseek only replies to my input. my STT is shit, I don't know why ngl. my AI works like the matrix learn scene. 1 line of code to add a skill. deepseek is just 1 possible skill. for example: brain.add_logical_skill(DiVoices()) is a skill that lets me change the output voice or...
  20. fukurou

    deepseek n shit

    @dollbuilderx3 this is a deepseek skill it should return replies from deepseek.
Top