Skip to content
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

Add missing __init__.py to llms/providers #153

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

zhudotexe
Copy link

Currently, trying to import evaluation_harness from another package causes the following error:

>>> from evaluation_harness import evaluator_router
Traceback (most recent call last):
  [...snip]
  File ".../venv/lib/python3.10/site-packages/evaluation_harness/helper_functions.py", line 18, in <module>
    from llms.providers.openai_utils import (
  File ".../venv/lib/python3.10/site-packages/llms/__init__.py", line 2, in <module>
    from .providers.hf_utils import generate_from_huggingface_completion
ModuleNotFoundError: No module named 'llms.providers'

This seems to be because llms/providers is missing an __init__.py file. This PR adds an empty __init__.py so that Python recognizes the submodule.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant