Skip to content

Commit

Permalink
Fixed __init__.py to work for single image
Browse files Browse the repository at this point in the history
  • Loading branch information
Karun Agarwal committed Jul 19, 2023
1 parent 6c666ab commit 23bf795
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
4 changes: 2 additions & 2 deletions src/asr/google/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/conversation_terminator/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/coref/spacy/local/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/embeddings/openai/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/llm/openai/chatgpt3/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/llm/openai/chatgpt4/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/t2embedding/openai/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/text_lang_detection/bhashini/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/text_translation/bhashini/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model
4 changes: 2 additions & 2 deletions src/text_translation/google/remote/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .request import *
from .model import *
from .request import ModelRequest
from .request import Model

2 comments on commit 23bf795

@ksgr5566
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should be from .model import Model instead of from .request import Model.

@Gautam-Rajeev
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should be from .model import Model instead of from .request import Model.

@singhalkarun @Manas23601

Please sign in to comment.