Search results

  1. fukurou

    👨‍💻 dev LLM to skill

    import requests import json import threading import re from LivinGrimoirePacket.LivinGrimoire import Skill # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global...
  2. fukurou

    👨‍💻 dev LLM to skill

    import requests import json import threading import time # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global is_working, current_reply # Build the full...
  3. fukurou

    venice ai skill dev

    with character maintaining: import threading import requests import json # Assume DEEPSEEK_API_KEY is replaced with VENICE_API_KEY VENICE_API_KEY = "your_venice_api_key_here" class DaVeniceRun(ShorniSplash): def __init__(self): super().__init__() self.input_text = "" #...
  4. fukurou

    venice ai skill dev

    🔥 Top Ollama Models for Dirty Talk & Roleplay Model Name Description MythoMax-L2-13B Legendary for uncensored storytelling, flirtation, and spicy roleplay. Nous-Hermes-Llama2-13B Smart and expressive, great for seductive or romantic dialogue. Chronos-Hermes-13B A creative fusion of...
  5. fukurou

    venice ai skill dev

    Uncensored & High Compliance Models python "model": "venice-uncensored-1.1" # Minimal filtering, high compliance "model": "dolphin-2.9.2-qwen2-72b" # Most uncensored, great for raw output ⚡ Fast & Cost-Efficient Models python "model": "qwen3-4b" # Venice Small...
  6. fukurou

    venice ai skill dev

    no try version: import threading import requests import json # Assume DEEPSEEK_API_KEY is replaced with VENICE_API_KEY VENICE_API_KEY = "your_venice_api_key_here" class DaVeniceRun(ShorniSplash): def __init__(self): super().__init__() self.input_text = "" # Temporary...
  7. fukurou

    venice ai skill dev

    import threading import requests import json # Assume DEEPSEEK_API_KEY is replaced with VENICE_API_KEY VENICE_API_KEY = "your_venice_api_key_here" class DaVeniceRun(ShorniSplash): def __init__(self): super().__init__() self.input_text = "" # Temporary storage for input...
  8. fukurou

    venice ai skill dev

    import requests import json def call_venice_api(prompt, api_key): api_url = "https://api.venice.ai/v1/generate" payload = { "prompt": prompt, "model": "venice-uncensored-1.1", "max_tokens": 150 } headers = { "Content-Type": "application/json"...
  9. fukurou

    👨‍💻 dev LLM dev ass

    import requests import json import threading import time # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" def talk_to_waifu(prompt, history): global is_working, current_reply # Build the full...
  10. fukurou

    👨‍💻 dev LLM dev ass

    midway, but working import requests import json import threading import time # Initialize conversation history conversation_history = [] # Global variables for async operation is_working = False current_reply = "" current_user_input = "" def talk_to_waifu(prompt, history): global...
  11. 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...
  12. 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...
  13. 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...
  14. fukurou

    [MEDIA]

  15. fukurou

    [MEDIA]

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

    [MEDIA]

  20. 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...
Top