Skip to content

Commit

Permalink
Small package structure improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
Hialus committed Feb 11, 2024
1 parent ea6a397 commit a8e5860
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions app/llm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from llm.generation_arguments import CompletionArguments
from llm.request_handler_interface import RequestHandlerInterface
from llm.llm_manager import LlmManager
from llm.generation_arguments import *
from llm.basic_request_handler import BasicRequestHandler, BasicRequestHandlerModel
2 changes: 1 addition & 1 deletion app/llm/basic_request_handler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from domain import IrisMessage
from llm import LlmManager
from llm import RequestHandlerInterface, CompletionArguments
from llm.llm_manager import LlmManager
from llm.wrapper import (
AbstractLlmCompletionWrapper,
AbstractLlmChatCompletionWrapper,
Expand Down

0 comments on commit a8e5860

Please sign in to comment.