Skip to content

Commit c97523d

Browse files
committed
fix: change url name
1 parent df800a9 commit c97523d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

oocana/oocana/context.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ class OOMOL_LLM_ENV(TypedDict):
170170
"""{basUrl}/v1 openai compatible endpoint
171171
"""
172172
base_url_v1: str
173-
fusion_url: str
173+
fusion_api_url: str
174174
api_key: str
175175
models: list[str]
176176
oomol_env: str
@@ -317,7 +317,7 @@ def oomol_llm_env(self) -> OOMOL_LLM_ENV:
317317
"base_url_v1": os.getenv("OOMOL_LLM_BASE_URL_V1", ""),
318318
"api_key": os.getenv("OOMOL_LLM_API_KEY", ""),
319319
"models": os.getenv("OOMOL_LLM_MODELS", "").split(","),
320-
"fusion_url": os.getenv("OOMOL_LLM_FUSION_URL", ""),
320+
"fusion_api_url": os.getenv("OOMOL_FUSION_API_URL", ""),
321321
"oomol_env": os.getenv("OOMOL_ENV", "prod"),
322322
}
323323

0 commit comments

Comments
 (0)