Skip to content

Resolved issue - No module named 'ChatApp' #37. #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ChatApp/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
import gc
from interface.hddr_llama_onnx_interface import LlamaOnnxInterface
from interface.empty_stub_interface import EmptyStubInterface
from ChatApp.app_modules.utils import (
from app_modules.utils import (
reset_textbox,
transfer_input,
reset_state,
delete_last_conversation,
cancel_outputing,
)
from ChatApp.app_modules.presets import (
from app_modules.presets import (
small_and_beautiful_theme,
title,
description_top,
description,
)
from ChatApp.app_modules.overwrites import postprocess
from app_modules.overwrites import postprocess

logging.basicConfig(
level=logging.DEBUG,
Expand Down
2 changes: 1 addition & 1 deletion ChatApp/app_modules/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from pygments.lexers import guess_lexer, get_lexer_by_name, ClassNotFound
from pygments.formatters import HtmlFormatter

from ChatApp.app_modules.presets import ALREADY_CONVERTED_MARK
from app_modules.presets import ALREADY_CONVERTED_MARK

logging.basicConfig(
level=logging.INFO,
Expand Down
2 changes: 1 addition & 1 deletion ChatApp/interface/hddr_llama_onnx_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from .base_interface import BaseLLMInterface

from ChatApp.app_modules.utils import (
from app_modules.utils import (
is_stop_word_or_prefix,
convert_to_markdown,
shared_state,
Expand Down