@noahzs Thank you for your continued maintenance of the addon. Iβm encountering a problem when installing the addon from GitHub. After running build_release.py
to install dependencies and then installing the plugin, I receive the following error message:
Traceback (most recent call last):
File "aqt.addons", line 250, in loadAddons
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\__init__.py", line 11, in <module>
from .process_notes import process_notes, generate_for_single_note
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\process_notes.py", line 6, in <module>
from .data_request import create_prompt, send_prompt_to_llm
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\data_request.py", line 27, in <module>
import openai
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\openai\__init__.py", line 8, in <module>
from . import types
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\openai\types\__init__.py", line 5, in <module>
from .batch import Batch as Batch
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\openai\types\batch.py", line 7, in <module>
from ..models import BaseModel
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\openai\_models.py", line 24, in <module>
from pydantic.fields import FieldInfo
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\pydantic\fields.py", line 17, in <module>
from pydantic_core import PydanticUndefined
File "C:\Users\Users\AppData\Roaming\Anki2\addons21\IntelliFiller\vendor\win32\pydantic_core\__init__.py", line 6, in <module>
from ._pydantic_core import (
ModuleNotFoundError: No module named 'pydantic_core._pydantic_core'
Iβm using Windows 10. Iβve confirmed that both pydantic_core
and pydantic_core.cp312-win_amd64.pyd
exist in the vendor
directory. Could you please help me determine what might be causing this issue? Thank you!