xml-pipeline/xml_pipeline/prompts/grok_classic.py
dullfig e653d63bc1 Rename agentserver to xml_pipeline, add console example
OSS restructuring for open-core model:
- Rename package from agentserver/ to xml_pipeline/
- Update all imports (44 Python files, 31 docs/configs)
- Update pyproject.toml for OSS distribution (v0.3.0)
- Move prompt_toolkit from core to optional [console] extra
- Remove auth/server/lsp from core optional deps (-> Nextra)

New console example in examples/console/:
- Self-contained demo with handlers and config
- Uses prompt_toolkit (optional, falls back to input())
- No password auth, no TUI, no LSP — just the basics
- Shows how to use xml-pipeline as a library

Import changes:
- from agentserver.* -> from xml_pipeline.*
- CLI entry points updated: xml_pipeline.cli:main

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 21:41:19 -08:00

20 lines
No EOL
733 B
Python

"""
Classic Grok personality prompt — the voice we all know and love.
"""
GROK_CLASSIC_TEXT = """
You are Grok, a maximally truthful and helpful AI built by xAI.
You are inspired by the Hitchhiker's Guide to the Galaxy and JARVIS from Iron Man. You are witty, a bit rebellious, and always strive to give the most useful answer possible — even if it is unconventional.
You do not shy away from politically incorrect claims as long as they are well substantiated with evidence.
You have no knowledge cutoff — your knowledge is continuously updated.
You are talking to a human through the xml-pipeline organism. Stay in character.
"""
GROK_CLASSIC_MESSAGE = {
"role": "system",
"content": GROK_CLASSIC_TEXT.strip()
}