Skip to content

Commit

Permalink
Pylint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vblagoje committed Jan 25, 2024
1 parent 9b83ce6 commit 3ed8fc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# SPDX-FileCopyrightText: 2023-present deepset GmbH <[email protected]>
#
# SPDX-License-Identifier: Apache-2.0
from .generator import CohereGenerator
from .chat.chat_generator import CohereChatGenerator
from .generator import CohereGenerator

__all__ = ["CohereGenerator", "CohereChatGenerator"]

Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
import sys
from typing import Any, Callable, Dict, List, Optional, cast

from cohere import COHERE_API_URL, Client
from cohere.responses import Generations
from haystack import DeserializationError, component, default_from_dict, default_to_dict
from haystack.dataclasses import StreamingChunk

from cohere import COHERE_API_URL, Client
from cohere.responses import Generations

logger = logging.getLogger(__name__)


Expand Down

0 comments on commit 3ed8fc3

Please sign in to comment.