Skip to content

Commit

Permalink
fix(ray): fix missing imports (#139)
Browse files Browse the repository at this point in the history
Because

- Some helper functions are missing from general help import path

This commit

- add missing import paths
  • Loading branch information
heiruwu authored Apr 29, 2024
1 parent d0f3f90 commit 02199b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions instill/helpers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
from instill.helpers.protobufs.parse import (
Metadata,
construct_image_to_image_infer_response,
construct_image_to_image_metadata_response,
construct_infer_response,
construct_metadata_response,
construct_text_generation_chat_infer_response,
construct_text_generation_chat_metadata_response,
construct_text_generation_infer_response,
construct_text_generation_metadata_response,
construct_text_to_image_infer_response,
construct_text_to_image_metadata_response,
construct_visual_question_answering_infer_response,
construct_visual_question_answering_metadata_response,
)

0 comments on commit 02199b1

Please sign in to comment.