From c9da979ee267fbae6b024f97b0767988d453f9ed Mon Sep 17 00:00:00 2001 From: Katie Wu Date: Tue, 25 Jul 2023 14:34:22 -0700 Subject: [PATCH] Add llm-engine suffix to Spellbook URL --- clients/python/llmengine/api_engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/python/llmengine/api_engine.py b/clients/python/llmengine/api_engine.py index 0d82c184..16fd3a72 100644 --- a/clients/python/llmengine/api_engine.py +++ b/clients/python/llmengine/api_engine.py @@ -9,7 +9,7 @@ from aiohttp import ClientSession, ClientTimeout from llmengine.errors import parse_error -SPELLBOOK_API_URL = "https://api.spellbook.scale.com" +SPELLBOOK_API_URL = "https://api.spellbook.scale.com/llm-engine" LLM_ENGINE_BASE_PATH = os.getenv("LLM_ENGINE_BASE_PATH", SPELLBOOK_API_URL) DEFAULT_TIMEOUT: int = 10