Skip to content

Commit

Permalink
a
Browse files Browse the repository at this point in the history
  • Loading branch information
emrgnt-cmplxty committed Aug 26, 2024
1 parent 4369917 commit 80be82a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions py/core/providers/llm/sciphi.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import logging
from typing import Any

from base.abstractions.llm import GenerationConfig
from base.providers.llm import CompletionConfig
from core.base.abstractions.llm import GenerationConfig
from core.base.providers.llm import CompletionConfig
from .litellm import LiteCompletionProvider

logger = logging.getLogger(__name__)
Expand Down
11 changes: 4 additions & 7 deletions py/r2r/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@
"R2RClient",
]

try:
import core
from core import *

__all__ += core.__all__
except ImportError:
# Core dependencies not installed
pass
import core
from core import *

__all__ += core.__all__

0 comments on commit 80be82a

Please sign in to comment.