Skip to content

Commit 30a48eb

Browse files
authored
Update openai.py
added /v1 to base_url
1 parent ac384d8 commit 30a48eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swirl/openai/openai.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class OpenAIClient:
2020
but allows overriding with a custom base URL.
2121
Throws ValueError when no key is configured or passed in.
2222
"""
23-
def __init__(self, usage, key=None, base_url="http://localhost:5000"):
23+
def __init__(self, usage, key=None, base_url="http://localhost:5000/v1"):
2424
if usage not in [AI_RAG_USE, AI_REWRITE_USE, AI_QUERY_USE]:
2525
raise NotImplementedError(f"Unknown AI {usage}. Client initialization not supported.")
2626

0 commit comments

Comments
 (0)