Skip to content

Commit

Permalink
Add headers
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Jun 5, 2024
1 parent edf18e3 commit f05e499
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions haystack_experimental/components/tools/openapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

from haystack_experimental.components.tools.openapi.openapi import OpenAPITool

__all__ = ["OpenAPITool"]
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

import importlib
import re
from dataclasses import dataclass
Expand Down
1 change: 1 addition & 0 deletions haystack_experimental/components/tools/openapi/openapi.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

import json
from pathlib import Path
from typing import Any, Dict, List, Optional, Union
Expand Down
4 changes: 4 additions & 0 deletions haystack_experimental/util/payload_extraction.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0

import dataclasses
import json
from typing import Any, Callable, Dict, List, Optional, Union
Expand Down
4 changes: 4 additions & 0 deletions haystack_experimental/util/schema_conversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

import logging
from typing import Any, Callable, Dict, List, Optional
# SPDX-FileCopyrightText: 2022-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0


import jsonref

Expand Down

0 comments on commit f05e499

Please sign in to comment.