Skip to content

Commit a846670

Browse files
authored
Merge pull request #62 from JigsawStack/fix/bugs-for-stable-release
fix: update missing versioning for prompt engine path.
2 parents 8aacc80 + 86d26bb commit a846670

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jigsawstack/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def __init__(
137137

138138
self.prompt_engine = PromptEngine(
139139
api_key=api_key,
140-
api_url=api_url,
140+
api_url=api_url + "/v1",
141141
disable_request_logging=disable_request_logging,
142142
)
143143

@@ -260,7 +260,7 @@ def __init__(
260260

261261
self.prompt_engine = AsyncPromptEngine(
262262
api_key=api_key,
263-
api_url=api_url,
263+
api_url=api_url + "/v1",
264264
disable_request_logging=disable_request_logging,
265265
)
266266

0 commit comments

Comments
 (0)