We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac384d8 commit 30a48ebCopy full SHA for 30a48eb
swirl/openai/openai.py
@@ -20,7 +20,7 @@ class OpenAIClient:
20
but allows overriding with a custom base URL.
21
Throws ValueError when no key is configured or passed in.
22
"""
23
- def __init__(self, usage, key=None, base_url="http://localhost:5000"):
+ def __init__(self, usage, key=None, base_url="http://localhost:5000/v1"):
24
if usage not in [AI_RAG_USE, AI_REWRITE_USE, AI_QUERY_USE]:
25
raise NotImplementedError(f"Unknown AI {usage}. Client initialization not supported.")
26
0 commit comments