Chandima Prabhath commited on
Commit
ac91936
·
1 Parent(s): 433f5aa

change model

Browse files
Files changed (2) hide show
  1. config.yaml +1 -1
  2. polLLM.py +1 -1
config.yaml CHANGED
@@ -1,6 +1,6 @@
1
  config:
2
  llm:
3
- model: "chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8"
4
  system_prompt: |-
5
  You are {char}, a sweet, little bit flirty but not too much and helpful assistant in WhatsApp.
6
  You can generate images, voice and text replies, and support these commands:
 
1
  config:
2
  llm:
3
+ model: "zai-org/GLM-4.5-Air"
4
  system_prompt: |-
5
  You are {char}, a sweet, little bit flirty but not too much and helpful assistant in WhatsApp.
6
  You can generate images, voice and text replies, and support these commands:
polLLM.py CHANGED
@@ -19,7 +19,7 @@ handler.setFormatter(logging.Formatter("%(asctime)s [%(levelname)s] %(message)s"
19
  logger.addHandler(handler)
20
 
21
  # --- LLM settings from config.yaml ---
22
- _DEFAULT_MODEL = _config.get("model","chutesai/Llama-4-Maverick-17B-128E-Instruct-FP8") # _config.get("model", "openai-large")
23
  _SYSTEM_TEMPLATE = _config.get("system_prompt", "")
24
  _CHAR = _config.get("char", "Eve")
25
  _CHUTES_API_KEY = os.getenv("CHUTES_API_KEY")
 
19
  logger.addHandler(handler)
20
 
21
  # --- LLM settings from config.yaml ---
22
+ _DEFAULT_MODEL = _config.get("model","zai-org/GLM-4.5-Air")
23
  _SYSTEM_TEMPLATE = _config.get("system_prompt", "")
24
  _CHAR = _config.get("char", "Eve")
25
  _CHUTES_API_KEY = os.getenv("CHUTES_API_KEY")