LLM Chat via SSH

https://news.ycombinator.com/rss Hits: 3
Summary

# Server name, optional, can be changed to your own domain SERVER_NAME = chat.aigc.ing # Whether it's a public server, required. If not configured, it defaults to private server and requires whitelist configuration PUBLIC_SERVER = false # Rate limiting settings, optional. TTL suffix is for time, LIMIT is for count. Strongly recommended for public servers RATE_LIMIT_TTL = 3600 RATE_LIMIT_LIMIT = 300 LOGIN_FAILED_TTL = 600 LOGIN_FAILED_LIMIT = 10 # Blacklist and whitelist, optional. Configure GitHub usernames separated by commas BLACK_LIST = alice WHITE_LIST = bob # Redis URL, optional. If not configured, it will use simulated Redis and data will be lost on restart REDIS_URL = redis://default:ssh-ai-chat-pwd@127.0.0.1:6379 # Database URL, optional. If not configured, it will use PGLite to store data in the /app/data directory DATABASE_URL = postgres://postgres:ssh-ai-chat-pwd@127.0.0.1:5432/ssh-ai-chat # Umami configuration, optional UMAMI_HOST = https://eu.umami.is UMAMI_SITE_ID = 6bc6dd79-4672-44bc-91ea-938a6acb63a2 # System prompt, optional AI_MODEL_SYSTEM_PROMPT = " You are an AI chat assistant that... " # Model list, **required**, separated by commas AI_MODELS = " DeepSeek-V3,DeepSeek-R1,Gemini-2.5-Flash,Gemini-2.5-Pro " # Models that support chain of thought, use `<think>` tags to return reasoning chain. Optional, if not configured will display reasoning content AI_MODEL_REASONING_MODELS = " DeepSeek-R1,Qwen3-8B " # System reasoning model, optional, used for generating conversation titles. Only one model can be configured. If not configured, uses the first model from the model list AI_SYSTEM_MODEL = " Qwen3-8B " # Model configuration file, configures API call information for models in `AI_MODELS` and `AI_SYSTEM_MODEL` lists. # Name format: prefix `AI_MODEL_CONFIG_`, model name in all caps, `-` and `.` replaced with `_`. Conversion relationships will be shown in startup logs. # Value format: type, model ID, BaseURL, APIKey. API format must support OpenAI-compatib...

First seen: 2025-06-16 13:09

Last seen: 2025-06-16 15:10