Skip to content

Add missing __init__.py to llms/providers#153

Open
zhudotexe wants to merge 2 commits intoweb-arena-x:mainfrom
zhudotexe:main
Open

Add missing __init__.py to llms/providers#153
zhudotexe wants to merge 2 commits intoweb-arena-x:mainfrom
zhudotexe:main

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