mirror of
https://github.com/langflow-ai/langflow.git
synced 2026-07-24 06:10:49 +08:00
* version-1.9.0-docs * [autofix.ci] apply automated fixes * [autofix.ci] apply automated fixes (attempt 2/3) --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
19 lines
827 B
Plaintext
19 lines
827 B
Plaintext
---
|
|
title: Mock Data
|
|
slug: /mock-data
|
|
---
|
|
|
|
import Icon from "@site/src/components/icon";
|
|
import Tabs from '@theme/Tabs';
|
|
import TabItem from '@theme/TabItem';
|
|
import PartialParams from '@site/docs/_partial-hidden-params.mdx';
|
|
import PartialDevModeWindows from '@site/docs/_partial-dev-mode-windows.mdx';
|
|
|
|
The **Mock Data** component generates sample data for testing and development.
|
|
You can select these output types:
|
|
|
|
* `message_output`: A [Message (text)](/data-types#message) output with Lorem Ipsum sample text.
|
|
* `data_output`: A [Data (JSON)](/data-types#json) object containing a JSON structure with one sample record under `records` and a `summary` section.
|
|
* `dataframe_output`: A [DataFrame (tabular)](/data-types#table) with 50 mock records, including columns such as `customer_id`, `first_name`, and `last_name`.
|
|
|