Skip to content

Commit

Permalink
format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonalaird committed Sep 4, 2024
1 parent af4620e commit c0c5d55
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions vision_agent/lmm/lmm.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
from abc import ABC, abstractmethod
from pathlib import Path
from typing import Any, Dict, Iterator, List, Optional, Union, cast, Sequence
from typing import Any, Dict, Iterator, List, Optional, Sequence, Union, cast

import anthropic
import requests
Expand All @@ -20,7 +20,10 @@
class LMM(ABC):
@abstractmethod
def generate(
self, prompt: str, media: Optional[Sequence[Union[str, Path]]] = None, **kwargs: Any
self,
prompt: str,
media: Optional[Sequence[Union[str, Path]]] = None,
**kwargs: Any,
) -> Union[str, Iterator[Optional[str]]]:
pass

Expand Down

0 comments on commit c0c5d55

Please sign in to comment.