Search results

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

    [MEDIA]

  5. 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
  6. 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.
  7. fukurou

    deepseek n shit

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

    deepseek n shit

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

    hi

    hi
  11. 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)...
  12. fukurou

    cpp port

  13. fukurou

    cpp port

  14. fukurou

    cpp port

  15. fukurou

    [MEDIA]

  16. 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...
  17. 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...
  18. 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...
  19. fukurou

    cpp port

    .h #ifndef KOKORO_H #define KOKORO_H #include <string> #include <unordered_map> using namespace std; class Kokoro { private: string emot; public: unordered_map<string, string> toHeart; // Constructor Kokoro(); // Getters and Setters const string& getEmot() const...
  20. fukurou

    cpp port

    .h #ifndef ALGORITHM_H #define ALGORITHM_H #include <vector> class Algorithm { private: std::vector<void*> algParts; // Using void* to avoid details about Mutatable public: // Constructors Algorithm(const std::vector<void*>& parts); Algorithm(const void* parts[], size_t...
Top