langflow-core 1.12.0.dev0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1 @@
1
+ """Marker package for the bundle-free Langflow Core distribution."""
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.4
2
+ Name: langflow-core
3
+ Version: 1.12.0.dev0
4
+ Summary: Langflow's service-complete profile with core components and no provider bundles
5
+ Project-URL: Repository, https://github.com/langflow-ai/langflow
6
+ Project-URL: Documentation, https://docs.langflow.org
7
+ Maintainer-email: Carlos Coelho <carlos@langflow.org>, Cristhian Zanforlin <cristhian.lousa@gmail.com>, Gabriel Almeida <gabriel@langflow.org>, Lucas Eduoli <lucaseduoli@gmail.com>, Otávio Anovazzi <otavio2204@gmail.com>, Rodrigo Nader <rodrigo@langflow.org>, Italo dos Anjos <italojohnnydosanjos@gmail.com>
8
+ License-Expression: MIT
9
+ Keywords: ai,core,langflow,server,workflow
10
+ Classifier: Development Status :: 5 - Production/Stable
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Programming Language :: Python :: 3.14
20
+ Requires-Python: <3.15,>=3.10
21
+ Requires-Dist: langflow-base[complete]==1.12.0.dev0
22
+ Provides-Extra: audio
23
+ Requires-Dist: langflow-base[audio]==1.12.0.dev0; extra == 'audio'
24
+ Provides-Extra: postgresql
25
+ Requires-Dist: langflow-base[postgresql]==1.12.0.dev0; extra == 'postgresql'
26
+ Description-Content-Type: text/markdown
27
+
28
+ # Langflow Core
29
+
30
+ `langflow-core` is Langflow's service-complete, provider-bundle-free application
31
+ profile. It combines `langflow-base[complete]`, the Langflow application server
32
+ and web UI, and Langflow's built-in core components. It does not depend on
33
+ provider extension distributions such as `lfx-openai`, `lfx-ibm`, or
34
+ `lfx-bundles`.
35
+
36
+ Install and run it with:
37
+
38
+ ```bash
39
+ python -m pip install langflow-core
40
+ langflow run
41
+ ```
42
+
43
+ The `langflow-core` command is an alias for the same launcher:
44
+
45
+ ```bash
46
+ langflow-core run
47
+ ```
48
+
49
+ For voice mode, install the audio dependencies:
50
+
51
+ ```bash
52
+ python -m pip install "langflow-core[audio]"
53
+ ```
54
+
55
+ For PostgreSQL support, install the optional extra:
56
+
57
+ ```bash
58
+ python -m pip install "langflow-core[postgresql]"
59
+ ```
60
+
61
+ The distribution depends on `langflow-base[complete]` for Langflow's API,
62
+ services, persistence, web UI, and service-level optional dependencies. It also
63
+ includes the `lfx` execution engine transitively through `langflow-base`. It
64
+ does not install any distribution whose name starts with `lfx-`.
65
+
66
+ Provider components remain independently installable. For example, add OpenAI
67
+ components to an existing core environment with:
68
+
69
+ ```bash
70
+ python -m pip install lfx-openai
71
+ ```
72
+
73
+ The full `langflow` distribution consumes `langflow-core` and adds Langflow's
74
+ curated provider bundle set. `langflow-core` is the sole owner of the
75
+ `langflow` command, so full installations use the same launcher without
76
+ installing a duplicate console script. Install `langflow-core` directly when
77
+ you want to choose provider bundles yourself.
78
+
79
+ `langflow-core` is not Langflow's smallest package profile. Use the modular
80
+ `langflow-base` package when you need a smaller dependency surface or
81
+ lower-level control over service extras, or use `lfx` when you need the
82
+ headless execution engine without the Langflow application server and UI.
@@ -0,0 +1,5 @@
1
+ langflow_core/__init__.py,sha256=KV-Y06LKPQWpmPrjhf3k0-ia3sSrumFTycTcteOxC3g,69
2
+ langflow_core-1.12.0.dev0.dist-info/METADATA,sha256=qndI2wPZNov1MZkq5OKiKT4ew3X8kRqZVA21qK4Sx4A,3316
3
+ langflow_core-1.12.0.dev0.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
4
+ langflow_core-1.12.0.dev0.dist-info/entry_points.txt,sha256=3O7py9w1zUQk2KK3DIqofJidyTkeJO3R8IUU5leQ_ro,109
5
+ langflow_core-1.12.0.dev0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.31.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ langflow = langflow.langflow_launcher:main
3
+ langflow-core = langflow.langflow_launcher:main