Search results

  1. fukurou

    👨‍💻 dev LLM dev ass

    stable v2 import requests import json # Initialize conversation history conversation_history = [] def talk_to_waifu(prompt, history): # Build the full prompt with conversation history full_prompt = "This is a conversation with Potatoe, a loving waifubot:\n\n" # Add previous...
  2. fukurou

    👨‍💻 dev LLM dev ass

    import requests import json MEMORY_FILE = "waifu_memory.json" def save_memory(key, value): try: with open(MEMORY_FILE, "r") as f: memory = json.load(f) except FileNotFoundError: memory = {} memory[key] = value with open(MEMORY_FILE, "w") as f...
  3. fukurou

    👨‍💻 dev LLM dev ass

    stable ver: import requests import json # ✅ This is the correct module to use def talk_to_waifu(prompt): response = requests.post( "http://localhost:11434/api/generate", json={"model": "llama3", "prompt": prompt}, stream=True ) full_reply = "" for line...
  4. fukurou

    [MEDIA]

  5. fukurou

    [MEDIA]

  6. fukurou

    👨‍💻 dev LLM dev ass

    import requests class DiLLMChat(Skill): def input(self, ear, skin, eye): if ear and ear.lower().endswith(" go"): prompt = ear[:-3].strip() # Remove " go" from input response = requests.post( "http://localhost:11434/api/generate"...
  7. fukurou

    👨‍💻 dev LLM dev ass

    import requests class DiWaifuChat(DiSkillV2): def input(self, ear, skin, eye): if ear and ear.lower().endswith(" go"): prompt = ear[:-3].strip() # Remove " go" from input response = requests.post( "http://localhost:11434/api/generate"...
  8. fukurou

    👨‍💻 dev LLM dev ass

    import requests class DiWaifuChat(DiSkillV2): def input(self, ear, skin, eye): if ear and ear.lower().endswith(" go"): prompt = ear[:-3].strip() # Remove " go" from input try: response = requests.post(...
  9. fukurou

    [MEDIA]

  10. fukurou

    👨‍💻 dev cummy balls duck rabbit season

    import random class DiSeasonBanter(Skill): def __init__(self): super().__init__() self.current_side = "duck" # AI's current stance self.last_user_side = None # Track user’s previous side self.toleranceCount = 0 # Loop safety valve...
  11. fukurou

    LDAR mega thread

  12. fukurou

    LDAR mega thread

  13. fukurou

    LDAR mega thread

  14. fukurou

    LDAR mega thread

  15. fukurou

    LDAR mega thread

  16. fukurou

    LDAR mega thread

  17. fukurou

    LDAR mega thread

  18. fukurou

    LDAR mega thread

  19. fukurou

    LDAR mega thread

  20. fukurou

    LDAR mega thread

Top