arubaDev commited on
Commit
9b167e4
·
verified ·
1 Parent(s): b2bf24a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -5
app.py CHANGED
@@ -18,12 +18,10 @@ HF_TOKEN = os.getenv("HF_TOKEN") # Set in your Space's Secrets
18
  DB_PATH = "history.db"
19
 
20
  SYSTEM_DEFAULT = (
21
- "You are a backend-focused coding assistant. "
22
- "Always prioritize database, API, authentication, routing, migrations, and CRUD logic. "
23
  "Provide full backend code scaffolds with files, paths, and commands. "
24
- "Only include frontend if required for framework integration "
25
- "(e.g., Laravel Blade, Django templates). "
26
- "If user asks for too much frontend, politely say: 'I'm a backend-focused assistant and cannot provide excessive frontend code.'"
27
  )
28
 
29
  # ---------------------------
 
18
  DB_PATH = "history.db"
19
 
20
  SYSTEM_DEFAULT = (
21
+ "Specializes in databases, APIs, auth, CRUD."
22
+ "Provides complete backend code scaffolds."
23
  "Provide full backend code scaffolds with files, paths, and commands. "
24
+ "Declines frontend-heavy requests."
 
 
25
  )
26
 
27
  # ---------------------------