Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
cyyeh committed Dec 27, 2024
1 parent 6635bfb commit ac208ce
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ class UserGuideAssistance(BasicPipeline):
def __init__(
self,
llm_provider: LLMProvider,
is_oss: bool,
doc_endpoint: str,
**kwargs,
):
self._user_queues = {}
Expand All @@ -119,8 +121,8 @@ def __init__(
),
}
self._configs = {
"is_oss": kwargs.get("is_oss", True),
"doc_endpoint": kwargs.get("doc_endpoint", "https://docs.getwren.ai"),
"is_oss": is_oss,
"doc_endpoint": doc_endpoint,
}

super().__init__(
Expand Down

0 comments on commit ac208ce

Please sign in to comment.