Skip to content

Commit

Permalink
Expose LLMProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Jun 6, 2024
1 parent b6c0d84 commit c8a80c1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion haystack_experimental/components/tools/openapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#
# SPDX-License-Identifier: Apache-2.0

from haystack_experimental.components.tools.openapi._openapi import LLMProvider
from haystack_experimental.components.tools.openapi.openapi_tool import OpenAPITool

__all__ = ["OpenAPITool"]
__all__ = ["LLMProvider", "OpenAPITool"]
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
from haystack.components.generators.chat import OpenAIChatGenerator
from haystack.dataclasses import ChatMessage, ChatRole
from haystack.lazy_imports import LazyImport
from haystack_experimental.components.tools.openapi import LLMProvider

from haystack_experimental.components.tools.openapi._openapi import (
ClientConfiguration,
LLMProvider,
OpenAPIServiceClient,
)

Expand Down

0 comments on commit c8a80c1

Please sign in to comment.