Skip to content

Commit

Permalink
isorted
Browse files Browse the repository at this point in the history
  • Loading branch information
nikpocuca committed Jan 16, 2025
1 parent 781362a commit 4ffeedd
Showing 1 changed file with 9 additions and 16 deletions.
25 changes: 9 additions & 16 deletions unstructured_ingest/v2/processes/connectors/pinecone.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,19 @@

from pydantic import Field, Secret

from unstructured_ingest.v2.errors import UserError

from unstructured_ingest.error import DestinationConnectionError
from unstructured_ingest.utils.data_prep import (
flatten_dict,
generator_batching_wbytes,
)
from unstructured_ingest.utils.data_prep import (flatten_dict,
generator_batching_wbytes)
from unstructured_ingest.utils.dep_check import requires_dependencies
from unstructured_ingest.v2.constants import RECORD_ID_LABEL
from unstructured_ingest.v2.interfaces import (
AccessConfig,
ConnectionConfig,
FileData,
Uploader,
UploaderConfig,
UploadStager,
UploadStagerConfig,
)
from unstructured_ingest.v2.errors import UserError
from unstructured_ingest.v2.interfaces import (AccessConfig, ConnectionConfig,
FileData, Uploader,
UploaderConfig, UploadStager,
UploadStagerConfig)
from unstructured_ingest.v2.logger import logger
from unstructured_ingest.v2.processes.connector_registry import DestinationRegistryEntry
from unstructured_ingest.v2.processes.connector_registry import \
DestinationRegistryEntry
from unstructured_ingest.v2.utils import get_enhanced_element_id

if TYPE_CHECKING:
Expand Down

0 comments on commit 4ffeedd

Please sign in to comment.