Default Data Loader Node#
Verwenden Sie den Default Data Loader Node, um binäre Datendateien oder JSON-Daten für Vektorspeicher oder Zusammenfassungen zu laden.
Auf dieser Seite finden Sie eine Liste der Parameter, die der Default Data Loader Node unterstützt, sowie Links zu weiteren Ressourcen.
Parameter resolution in sub-nodes
Sub-nodes behave differently to other nodes when processing multiple items using an expression.
Most nodes, including root nodes, take any number of items as input, process these items, and output the results. You can use expressions to refer to input items, and the node resolves the expression for each item in turn. For example, given an input of five name
values, the expression {{ $json.name }}
resolves to each name in turn.
In sub-nodes, the expression always resolves to the first item. For example, given an input of five name
values, the expression {{ $json.name }}
always resolves to the first name.
Node-Parameter#
- Datentyp: Wählen Sie Binär oder JSON.
- Datenformat: Wird angezeigt, wenn Sie Datentyp auf Binär setzen. Wählen Sie den Datei-MIME-Typ für Ihre Binärdaten aus. Stellen Sie Automatische Erkennung durch MIME-Typ ein, wenn Localmind Automate das Datenformat für Sie festlegen soll. Wenn Sie ein bestimmtes Datenformat festlegen und der eingehende Datei-MIME-Typ nicht übereinstimmt, gibt der Node einen Fehler aus. Wenn Sie Automatische Erkennung durch MIME-Typ verwenden, greift der Node auf das Textformat zurück, wenn er den Datei-MIME-Typ keinem unterstützten Datenformat zuordnen kann.
- Modus: Wird angezeigt, wenn Sie Datentyp auf JSON setzen. Wählen Sie aus:
- Alle Eingabedaten laden: Verwenden Sie alle Eingabedaten des Nodes.
- Spezifische Daten laden: Verwenden Sie Ausdrücke, um die Daten zu definieren, die Sie laden möchten. Sie können sowohl Text als auch Ausdrücke hinzufügen. Dies bedeutet, dass Sie ein benutzerdefiniertes Dokument aus einer Mischung aus Text und Ausdrücken erstellen können.
Node-Optionen#
- Metadaten: Legen Sie die Metadaten fest, die das Dokument im Vektorspeicher begleiten sollen. Dies ist das, was Sie mit der Option Metadatenfilter abgleichen, wenn Sie Daten mit den Vektorspeichernodes abrufen.
Verwandte Ressourcen#
Refer to LangChain's documentation on document loaders for more information about the service.
View Localmind Automate's Advanced AI documentation.
AI glossary#
- completion: Completions are the responses generated by a model like GPT.
- hallucinations: Hallucination in AI is when an LLM (large language model) mistakenly perceives patterns or objects that don't exist.
- vector database: A vector database stores mathematical representations of information. Use with embeddings and retrievers to create a database that your AI can access when answering questions.
- vector store: A vector store, or vector database, stores mathematical representations of information. Use with embeddings and retrievers to create a database that your AI can access when answering questions.