langflow-nightly 1.4.3.dev4__py3-none-any.whl → 1.4.3.dev6__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.
- {langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/METADATA +20 -23
- langflow_nightly-1.4.3.dev6.dist-info/RECORD +7 -0
- langflow_nightly-1.4.3.dev4.dist-info/RECORD +0 -7
- {langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/WHEEL +0 -0
- {langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/entry_points.txt +0 -0
- {langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: langflow-nightly
|
3
|
-
Version: 1.4.3.
|
3
|
+
Version: 1.4.3.dev6
|
4
4
|
Summary: A Python package with a built-in web application
|
5
5
|
Project-URL: Repository, https://github.com/langflow-ai/langflow
|
6
6
|
Project-URL: Documentation, https://docs.langflow.org
|
@@ -67,7 +67,7 @@ Requires-Dist: langchain-pinecone>=0.2.8
|
|
67
67
|
Requires-Dist: langchain-sambanova==0.1.0
|
68
68
|
Requires-Dist: langchain-unstructured==0.1.5
|
69
69
|
Requires-Dist: langchain==0.3.21
|
70
|
-
Requires-Dist: langflow-base-nightly==0.4.3.
|
70
|
+
Requires-Dist: langflow-base-nightly==0.4.3.dev6
|
71
71
|
Requires-Dist: langfuse==2.53.9
|
72
72
|
Requires-Dist: langsmith<1.0.0,>=0.3.42
|
73
73
|
Requires-Dist: langwatch==0.1.16
|
@@ -97,7 +97,6 @@ Requires-Dist: pytube==15.0.0
|
|
97
97
|
Requires-Dist: pywin32==307; sys_platform == 'win32'
|
98
98
|
Requires-Dist: qdrant-client==1.9.2
|
99
99
|
Requires-Dist: qianfan==0.3.5
|
100
|
-
Requires-Dist: ragstack-ai-knowledge-store==0.2.1
|
101
100
|
Requires-Dist: redis==5.2.1
|
102
101
|
Requires-Dist: ruff>=0.9.7
|
103
102
|
Requires-Dist: scipy>=1.14.1
|
@@ -133,8 +132,8 @@ Provides-Extra: nv-ingest
|
|
133
132
|
Requires-Dist: nv-ingest-api==2025.4.22.dev20250422; extra == 'nv-ingest'
|
134
133
|
Requires-Dist: nv-ingest-client==2025.4.22.dev20250422; extra == 'nv-ingest'
|
135
134
|
Provides-Extra: postgresql
|
136
|
-
Requires-Dist: sqlalchemy[postgresql-psycopg2binary]; extra == 'postgresql'
|
137
|
-
Requires-Dist: sqlalchemy[postgresql-psycopg]; extra == 'postgresql'
|
135
|
+
Requires-Dist: sqlalchemy[postgresql-psycopg2binary]<3.0.0,>=2.0.38; extra == 'postgresql'
|
136
|
+
Requires-Dist: sqlalchemy[postgresql-psycopg]<3.0.0,>=2.0.38; extra == 'postgresql'
|
138
137
|
Description-Content-Type: text/markdown
|
139
138
|
|
140
139
|
<!-- markdownlint-disable MD030 -->
|
@@ -158,39 +157,37 @@ Description-Content-Type: text/markdown
|
|
158
157
|
|
159
158
|
## ✨ Highlight features
|
160
159
|
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
160
|
+
- **Visual builder interface** to quickly get started and iterate .
|
161
|
+
- **Source code access** lets you customize any component using Python.
|
162
|
+
- **Interactive playground** to immediately test and refine your flows with step-by-step control.
|
163
|
+
- **Multi-agent orchestration** with conversation management and retrieval.
|
164
|
+
- **Deploy as an API** or export as JSON for Python apps.
|
165
|
+
- **Observability** with LangSmith, LangFuse and other integrations.
|
166
|
+
- **Enterprise-ready** security and scalability.
|
168
167
|
|
169
168
|
## ⚡️ Quickstart
|
170
169
|
|
171
|
-
Langflow
|
170
|
+
Langflow requires [Python 3.10 to 3.13](https://www.python.org/downloads/release/python-3100/) and [uv](https://docs.astral.sh/uv/getting-started/installation/).
|
172
171
|
|
173
|
-
|
172
|
+
1. To install Langflow, run:
|
174
173
|
|
175
174
|
```shell
|
176
|
-
uv pip install langflow
|
175
|
+
uv pip install langflow -U
|
177
176
|
```
|
178
177
|
|
179
|
-
|
178
|
+
2. To run Langflow, run:
|
180
179
|
|
181
180
|
```shell
|
182
|
-
|
181
|
+
uv run langflow run
|
183
182
|
```
|
184
183
|
|
185
|
-
|
186
|
-
|
187
|
-
### Self-managed
|
184
|
+
3. Go to the default Langflow URL at `http://127.0.0.1:7860`.
|
188
185
|
|
189
|
-
|
186
|
+
For more information about installing Langflow, including Docker and Desktop options, see [Install Langflow](https://docs.langflow.org/get-started-installation).
|
190
187
|
|
191
|
-
|
188
|
+
## 📦 Deployment
|
192
189
|
|
193
|
-
|
190
|
+
Langflow is completely open source and you can deploy it to all major deployment clouds. To learn how to use Docker to deploy Langflow, see the [Docker deployment guide](https://docs.langflow.org/deployment-docker).
|
194
191
|
|
195
192
|
## ⭐ Stay up-to-date
|
196
193
|
|
@@ -0,0 +1,7 @@
|
|
1
|
+
langflow/version/__init__.py,sha256=eAQv-Bw2fwYEc_aLqZjtMAZNdYFLaUgZRmUtVbMybqw,23
|
2
|
+
langflow/version/version.py,sha256=uljaZ5G2bOqi8szChWz-Coudm86aAzp2xWUC_4oKst8,1201
|
3
|
+
langflow_nightly-1.4.3.dev6.dist-info/METADATA,sha256=EAkEkdMdRGiHO84VVnt0chfyZXPfsJSdY1gSpeG_ccU,9489
|
4
|
+
langflow_nightly-1.4.3.dev6.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
+
langflow_nightly-1.4.3.dev6.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
|
6
|
+
langflow_nightly-1.4.3.dev6.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
|
7
|
+
langflow_nightly-1.4.3.dev6.dist-info/RECORD,,
|
@@ -1,7 +0,0 @@
|
|
1
|
-
langflow/version/__init__.py,sha256=eAQv-Bw2fwYEc_aLqZjtMAZNdYFLaUgZRmUtVbMybqw,23
|
2
|
-
langflow/version/version.py,sha256=uljaZ5G2bOqi8szChWz-Coudm86aAzp2xWUC_4oKst8,1201
|
3
|
-
langflow_nightly-1.4.3.dev4.dist-info/METADATA,sha256=nmEPRt5PTmTM3PJf7XgbY--vsKISjngBGXuVOw01kVk,9356
|
4
|
-
langflow_nightly-1.4.3.dev4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
-
langflow_nightly-1.4.3.dev4.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
|
6
|
-
langflow_nightly-1.4.3.dev4.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
|
7
|
-
langflow_nightly-1.4.3.dev4.dist-info/RECORD,,
|
File without changes
|
{langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/entry_points.txt
RENAMED
File without changes
|
{langflow_nightly-1.4.3.dev4.dist-info → langflow_nightly-1.4.3.dev6.dist-info}/licenses/LICENSE
RENAMED
File without changes
|