nandHyf 1 year ago
parent
commit
0694ea83c5
3 changed files with 7 additions and 5 deletions
  1. 0 2
      Alt.py
  2. 6 2
      Controller.py
  3. 1 1
      dev.toml

+ 0 - 2
Alt.py

@@ -2,8 +2,6 @@
 # err 0: correct config not found
 # err 1: correct DB not found
 # -----
-import Stateful
-import datetime, base64, uuid
 
 def Err(errCode, lang='en'):
     errText = ""

+ 6 - 2
Controller.py

@@ -101,8 +101,12 @@ class View:
 
 
 # For ChatGLM3-6B
-class LLMCall():
-    pass
+class LLM():
+    def call():
+        pass
+
+    def respond():
+        pass
 
 
 if __name__ == "__main__":

+ 1 - 1
dev.toml

@@ -1,5 +1,5 @@
 # ----- App Configuration -----
-StrictMode = false
+StrictMode = true
 
 DBType = "sqlite3"
 DBPath = "dev.db"