Skip to content

Commit

Permalink
Multimodal embeddings
Browse files Browse the repository at this point in the history
  • Loading branch information
fzowl committed Dec 14, 2024
1 parent 173d9d8 commit 02e4ceb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions libs/core/langchain_core/embeddings/multimodal_embeddings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

from abc import ABC, abstractmethod
from enum import Enum
from typing import Optional

from langchain_core.runnables.config import run_in_executor

Expand All @@ -15,9 +14,7 @@ class ContentType(Enum):

class Content(ABC):
type: ContentType
text: Optional[str]
image_url: Optional[str]
image_base64: Optional[str]
data: str


class MultimodalInput(ABC):
Expand Down

0 comments on commit 02e4ceb

Please sign in to comment.