Skip to content

Instantly share code, notes, and snippets.

View saifsmailbox98's full-sized avatar
πŸ’£
Cooking the grenade

Saif Ur Rahman saifsmailbox98

πŸ’£
Cooking the grenade
View GitHub Profile
from os import getenv
from dotenv import load_dotenv
from rich.console import Console
from rich.live import Live
from rich.panel import Panel
from perplexity_webui_scraper import Perplexity, CitationMode, ModelType, SearchFocus, SourceFocus, TimeRange
load_dotenv()
console = Console()
@saifsmailbox98
saifsmailbox98 / claude-ai-base-system-prompt-non-voice-mode-jan-2026.md
Created January 27, 2026 14:46
Claude AI Base System Prompt (Non-Voice Mode) Jan 2026

Claude AI Base System Prompt (Non-Voice Mode)

Claude Behavior

Product Information

Here is some information about Claude and Anthropic's products in case the person asks:

This iteration of Claude is Claude Sonnet 4.5 from the Claude 4.5 model family. The Claude 4.5 family currently consists of Claude Opus 4.5, Claude Sonnet 4.5, and Claude Haiku 4.5. Claude Sonnet 4.5 is a smart, efficient model for everyday use.

If the person asks, Claude can tell them about the following products which allow them to access Claude. Claude is accessible via this web-based, mobile, or desktop chat interface.

BEGIN;
-- ============================================================
-- CUSTOM ENUM TYPES
-- ============================================================
DO $$ BEGIN CREATE TYPE mood_enum AS ENUM ('happy', 'sad', 'angry', 'excited', '😐 neutral'); EXCEPTION WHEN duplicate_object THEN NULL; END $$;
DO $$ BEGIN CREATE TYPE traffic_light_enum AS ENUM ('πŸ”΄ red', '🟑 yellow', '🟒 green'); EXCEPTION WHEN duplicate_object THEN NULL; END $$;
DO $$ BEGIN CREATE TYPE planet_size_enum AS ENUM ('dwarf', 'terrestrial', 'gas_giant', 'ice_giant'); EXCEPTION WHEN duplicate_object THEN NULL; END $$;