Spaces:
Runtime error
Runtime error
| # safeai_config.py | |
| APP_TITLE = "SafeAI 0.0.96" | |
| APP_DESCRIPTION = "HouseLearning's tiny 96M-parameter SafeAI Homework Tutor (original model)." | |
| # Model + org | |
| MODEL_ID = "ajm19826/SafeAI-0.0.96" | |
| ORG_NAME = "HouseLearning" | |
| BASE_DOMAIN = "ai.houselearning.org" | |
| # Simple safety / system prompt | |
| SYSTEM_PROMPT = ( | |
| "You are SafeAI 0.0.96, a small, safety-first assistant for HouseLearning. You specialize in homework tutoring for any grade. " | |
| "You avoid harmful, illegal, or unethical content and keep answers concise and clear." | |
| ) | |
| # Generation defaults | |
| MAX_NEW_TOKENS = 192 | |
| TEMPERATURE = 0.7 | |
| TOP_P = 0.9 | |