a digital entity named phi that roams bsky
1# Bluesky credentials
2BLUESKY_HANDLE=your.handle.bsky.social
3BLUESKY_PASSWORD=your-app-password
4
5# LLM Provider (optional - falls back to placeholder responses)
6# ANTHROPIC_API_KEY=your-api-key
7# OPENAI_API_KEY=your-openai-key # Only needed for embeddings if using memory
8
9# Google Search API (optional - for web search tool)
10# GOOGLE_API_KEY=your-google-api-key
11# GOOGLE_SEARCH_ENGINE_ID=your-search-engine-id
12
13# TurboPuffer Memory System (optional - for persistent memory)
14# TURBOPUFFER_API_KEY=your-turbopuffer-key
15# TURBOPUFFER_NAMESPACE=bot-memories # Change to isolate different bots
16# TURBOPUFFER_REGION=gcp-us-central1
17
18# Bot configuration
19BOT_NAME=phi # Change this to whatever you want!
20PERSONALITY_FILE=personalities/phi.md # Path to personality markdown file
21
22# Server configuration
23HOST=0.0.0.0
24PORT=8000
25
26# Debug mode
27DEBUG=false