diff --git a/api/db/init_data.py b/api/db/init_data.py
index e2c3e88c3ccebf96a4aa8acd75f99ca17220f1b0..5f3432845d1c06325de9996d0958e60223aae266 100644
--- a/api/db/init_data.py
+++ b/api/db/init_data.py
@@ -54,7 +54,7 @@ def init_superuser():
     for llm in LLMService.query(fid=LLM_FACTORY):
         tenant_llm.append(
             {"tenant_id": user_info["id"], "llm_factory": LLM_FACTORY, "llm_name": llm.llm_name, "model_type": llm.model_type,
-             "api_key": API_KEY, "base_url": LLM_BASE_URL})
+             "api_key": API_KEY, "api_base": LLM_BASE_URL})
 
     if not UserService.save(**user_info):
         print("\033[93m【ERROR】\033[0mcan't init admin.")