Search results

  1. 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...
  2. 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...
  3. 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 =...
  4. 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 =...
  5. 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...
  6. fukurou

    [MEDIA]

  7. 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
  8. 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.
  9. fukurou

    deepseek n shit

    automate?
  10. 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...
  11. fukurou

    deepseek n shit

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

    hi

    hi
  13. fukurou

    deepseek n shit

    def _async_func(this_cls): input_text = this_cls.input_text data = { "model": "deepseek-chat", "messages": [{"role": "user", "content": input_text}], "max_tokens": 50 # Limit response length } try: response = this_cls.call_deepseek_api(data)...
  14. fukurou

    cpp port

  15. fukurou

    cpp port

  16. fukurou

    cpp port

  17. fukurou

    [MEDIA]

  18. fukurou

    cpp port

    package LivinGrimoire; import java.util.ArrayList; import java.util.List; public class Skill { protected Kokoro kokoro = null; // Consciousness reference for interskill communication protected Algorithm outAlg = null; // Skill output algorithm protected int outpAlgPriority = -1...
  19. fukurou

    👨‍💻 dev core diet

    // Constructor Skill::Skill() {} // Virtual input method (can be overridden in derived classes) void Skill::input(const std::string& ear, const std::string& skin, const std::string& eye) { // No default implementation } // Output method: Passes the algorithm to Neuron void...
  20. fukurou

    👨‍💻 dev core diet

    class Skill { protected: Kokoro* kokoro = nullptr; // Reference for interskill communication std::unique_ptr<Algorithm> outAlg = nullptr; // Skill's output Algorithm int outpAlgPriority = -1; // Priority (1 -> 5, 1 being the highest) public...
Top