langflow-ai / langflow

⛓️ Langflow is a visual framework for building multi-agent and RAG applications. It's open-source, Python-powered, fully customizable, model and vector store agnostic.

Home Page:http://www.langflow.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Module langflow.inputs not found

legaltextai opened this issue · comments

I am experimenting with custom component based on the yesterday presentation.
I am on 1.0.0.a61
Thank you

To resolve the "Module langflow.inputs not found" error while using version 1.0.0.a61, ensure that the langflow.inputs module is correctly included in your package. According to the pyproject.toml file, the langflow package is included from the src/backend directory.

Make sure that the inputs module exists under src/backend/langflow/. The directory structure should look something like this:

src/
  backend/
    langflow/
      __init__.py
      inputs/
        __init__.py
        (other files)

If the inputs module is missing, you need to add it. Here is an example of what the inputs/__init__.py file might look like:

# src/backend/langflow/inputs/__init__.py

# Example content
def example_function():
    return "This is an example function in langflow.inputs module."

Ensure that the inputs directory and its __init__.py file are correctly placed within the langflow package directory. If the module is still not found, double-check the include paths in your pyproject.toml to ensure they cover all necessary files and directories.

include = ["src/backend/langflow/*", "src/backend/langflow/**/*"]

This configuration should include all files and subdirectories within src/backend/langflow/, including the inputs module.

Additionally, try reinstalling Langflow to ensure all dependencies are correctly installed:

python -m pip install langflow --pre -U --force-reinstall

If you continue to face issues, you might also want to check for common installation issues as outlined in the Langflow documentation. For example, if you encounter errors like No module named 'langflow.__main__', you can try running:

python -m langflow run

If that doesn't work, reinstall Langflow with:

python -m pip install langflow --pre -U

And if that still doesn't resolve the issue, try:

python -m pip install langflow --pre -U --force-reinstall

These steps should help you resolve the "Module langflow.inputs not found" error and any other potential installation issues [1][2][3].

To continue talking to Dosu, mention @dosu.

@legaltextai did 1.0.5 release resolved the issue for you?

yes. it did. thank you for the human touch.