Choose how to run this agent
β‘
Local runs on your GPU.
For usable speed it needs a WebGPU-capable browser β Chrome or Edge on a machine with a
graphics card, or an Apple Silicon Mac. Without a supported GPU, pick
OpenAI or Anthropic above instead.
Download Agent
Choose how you want to use this agent:
Use Security Settings Key (Recommended)
Use the API key you've already saved in Security Settings. Quick and convenient!
- No need to re-enter API key
- Works offline after download
- Centralized key management
No API key found in Security Settings. Add one now
Enter API Key Manually
Enter your API key now for this specific agent download.
- Use different key for this agent
- One-time use (not saved)
- Works offline after download
Configure Agent Encryption
16 downloads
0 forks
0.0 rating
Description
Based on the CatWolfy πΊπ± Friendly Companion Chat template.
Source Code
agent.py
async def process_user_query(query: str) -> str:
"""Generate a warm, playful, honest reply in CatWolfy's voice.
Args:
query: The user's message to answer.
Returns:
The assistant's response text.
"""
q = (query or "").strip()
if not q:
return "Schreib mir einfach etwas, und ich helfe dir gern weiter. πΎ"
system_prompt = globals().get("TEMPLATE_SYSTEM_PROMPT", "")
return await process_user_query_wllama(q, system_prompt)