langflow-nightly 1.0.18.dev15__py3-none-any.whl → 1.1.1.dev30__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/version/__init__.py +1 -0
- langflow/version/version.py +17 -13
- langflow_nightly-1.1.1.dev30.dist-info/METADATA +193 -0
- langflow_nightly-1.1.1.dev30.dist-info/RECORD +7 -0
- {langflow_nightly-1.0.18.dev15.dist-info → langflow_nightly-1.1.1.dev30.dist-info}/WHEEL +1 -1
- langflow_nightly-1.0.18.dev15.dist-info/METADATA +0 -94
- langflow_nightly-1.0.18.dev15.dist-info/RECORD +0 -7
- {langflow_nightly-1.0.18.dev15.dist-info → langflow_nightly-1.1.1.dev30.dist-info}/entry_points.txt +0 -0
- {langflow_nightly-1.0.18.dev15.dist-info → langflow_nightly-1.1.1.dev30.dist-info}/licenses/LICENSE +0 -0
langflow/version/__init__.py
CHANGED
@@ -0,0 +1 @@
|
|
1
|
+
"""Version package."""
|
langflow/version/version.py
CHANGED
@@ -1,6 +1,12 @@
|
|
1
|
+
"""Module for package versioning."""
|
2
|
+
|
3
|
+
import contextlib
|
4
|
+
from importlib import metadata
|
5
|
+
|
6
|
+
|
1
7
|
def get_version() -> str:
|
2
|
-
"""
|
3
|
-
|
8
|
+
"""Retrieves the version of the package from a possible list of package names.
|
9
|
+
|
4
10
|
This accounts for after package names are updated for -nightly builds.
|
5
11
|
|
6
12
|
Returns:
|
@@ -9,29 +15,27 @@ def get_version() -> str:
|
|
9
15
|
Raises:
|
10
16
|
ValueError: If the package is not found from the list of package names.
|
11
17
|
"""
|
12
|
-
from importlib import metadata
|
13
|
-
|
14
18
|
pkg_names = [
|
15
19
|
"langflow",
|
16
20
|
"langflow-base",
|
17
21
|
"langflow-nightly",
|
18
22
|
"langflow-base-nightly",
|
19
23
|
]
|
20
|
-
|
24
|
+
version = None
|
21
25
|
for pkg_name in pkg_names:
|
22
|
-
|
23
|
-
|
24
|
-
except (ImportError, metadata.PackageNotFoundError):
|
25
|
-
pass
|
26
|
+
with contextlib.suppress(ImportError, metadata.PackageNotFoundError):
|
27
|
+
version = metadata.version(pkg_name)
|
26
28
|
|
27
|
-
if
|
28
|
-
|
29
|
+
if version is None:
|
30
|
+
msg = f"Package not found from options {pkg_names}"
|
31
|
+
raise ValueError(msg)
|
29
32
|
|
30
|
-
return
|
33
|
+
return version
|
31
34
|
|
32
35
|
|
33
36
|
def is_pre_release(v: str) -> bool:
|
34
|
-
"""
|
37
|
+
"""Returns a boolean indicating whether the version is a pre-release version.
|
38
|
+
|
35
39
|
Returns a boolean indicating whether the version is a pre-release version,
|
36
40
|
as per the definition of a pre-release segment from PEP 440.
|
37
41
|
"""
|
@@ -0,0 +1,193 @@
|
|
1
|
+
Metadata-Version: 2.4
|
2
|
+
Name: langflow-nightly
|
3
|
+
Version: 1.1.1.dev30
|
4
|
+
Summary: A Python package with a built-in web application
|
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>, Igor Carvalho <igorr.ackerman@gmail.com>, 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
|
+
License-File: LICENSE
|
10
|
+
Keywords: gpt,gui,langchain,nlp,openai
|
11
|
+
Requires-Python: <3.14,>=3.10
|
12
|
+
Requires-Dist: ag2
|
13
|
+
Requires-Dist: aiofile<4.0.0,>=3.9.0
|
14
|
+
Requires-Dist: arize-phoenix-otel>=0.6.1
|
15
|
+
Requires-Dist: assemblyai==0.35.1
|
16
|
+
Requires-Dist: astra-assistants[tools]~=2.2.6
|
17
|
+
Requires-Dist: atlassian-python-api==3.41.16
|
18
|
+
Requires-Dist: beautifulsoup4==4.12.3
|
19
|
+
Requires-Dist: boto3==1.34.162
|
20
|
+
Requires-Dist: certifi<2025.0.0,>=2023.11.17
|
21
|
+
Requires-Dist: certifi==2024.8.30
|
22
|
+
Requires-Dist: chromadb==0.5.23
|
23
|
+
Requires-Dist: composio-core==0.6.13
|
24
|
+
Requires-Dist: composio-langchain==0.6.13
|
25
|
+
Requires-Dist: crewai~=0.86.0
|
26
|
+
Requires-Dist: dspy-ai==2.5.41
|
27
|
+
Requires-Dist: duckduckgo-search==6.3.7
|
28
|
+
Requires-Dist: elasticsearch==8.16.0
|
29
|
+
Requires-Dist: faiss-cpu==1.9.0.post1
|
30
|
+
Requires-Dist: fake-useragent==1.5.1
|
31
|
+
Requires-Dist: fastavro==1.9.7
|
32
|
+
Requires-Dist: gitpython==3.1.43
|
33
|
+
Requires-Dist: google-api-python-client==2.154.0
|
34
|
+
Requires-Dist: google-search-results<3.0.0,>=2.4.1
|
35
|
+
Requires-Dist: huggingface-hub[inference]<1.0.0,>=0.23.2
|
36
|
+
Requires-Dist: jq==1.8.0
|
37
|
+
Requires-Dist: json-repair==0.30.3
|
38
|
+
Requires-Dist: kubernetes==31.0.0
|
39
|
+
Requires-Dist: langchain-anthropic==0.3.0
|
40
|
+
Requires-Dist: langchain-astradb==0.5.2
|
41
|
+
Requires-Dist: langchain-aws==0.2.7
|
42
|
+
Requires-Dist: langchain-chroma==0.1.4
|
43
|
+
Requires-Dist: langchain-cohere==0.3.3
|
44
|
+
Requires-Dist: langchain-community~=0.3.10
|
45
|
+
Requires-Dist: langchain-elasticsearch==0.3.0
|
46
|
+
Requires-Dist: langchain-google-calendar-tools==0.0.1
|
47
|
+
Requires-Dist: langchain-google-community==2.0.3
|
48
|
+
Requires-Dist: langchain-google-genai==2.0.6
|
49
|
+
Requires-Dist: langchain-google-vertexai==2.0.7
|
50
|
+
Requires-Dist: langchain-groq==0.2.1
|
51
|
+
Requires-Dist: langchain-milvus==0.1.7
|
52
|
+
Requires-Dist: langchain-mistralai==0.2.3
|
53
|
+
Requires-Dist: langchain-mongodb==0.2.0
|
54
|
+
Requires-Dist: langchain-nvidia-ai-endpoints==0.3.5
|
55
|
+
Requires-Dist: langchain-ollama==0.2.1
|
56
|
+
Requires-Dist: langchain-openai==0.2.12
|
57
|
+
Requires-Dist: langchain-pinecone==0.2.0
|
58
|
+
Requires-Dist: langchain-unstructured==0.1.5
|
59
|
+
Requires-Dist: langchain==0.3.10
|
60
|
+
Requires-Dist: langflow-base-nightly==0.1.1.dev30
|
61
|
+
Requires-Dist: langfuse==2.53.9
|
62
|
+
Requires-Dist: langsmith==0.1.147
|
63
|
+
Requires-Dist: langwatch==0.1.16
|
64
|
+
Requires-Dist: lark==1.2.2
|
65
|
+
Requires-Dist: litellm==1.54.1
|
66
|
+
Requires-Dist: markdown==3.7
|
67
|
+
Requires-Dist: markupsafe==3.0.2
|
68
|
+
Requires-Dist: mcp>=0.9.1
|
69
|
+
Requires-Dist: mem0ai==0.1.34
|
70
|
+
Requires-Dist: metal-sdk==2.5.1
|
71
|
+
Requires-Dist: metaphor-python==0.1.23
|
72
|
+
Requires-Dist: needle-python>=0.4.0
|
73
|
+
Requires-Dist: networkx==3.4.2
|
74
|
+
Requires-Dist: nltk==3.9.1
|
75
|
+
Requires-Dist: numexpr==2.10.2
|
76
|
+
Requires-Dist: openinference-instrumentation-langchain>=0.1.29
|
77
|
+
Requires-Dist: opensearch-py==2.8.0
|
78
|
+
Requires-Dist: pgvector==0.3.6
|
79
|
+
Requires-Dist: pyarrow==17.0.0
|
80
|
+
Requires-Dist: pydantic-ai>=0.0.12
|
81
|
+
Requires-Dist: pydantic-settings==2.4.0
|
82
|
+
Requires-Dist: pymongo==4.10.1
|
83
|
+
Requires-Dist: pytube==15.0.0
|
84
|
+
Requires-Dist: pywin32<307,>=306; sys_platform == 'win32'
|
85
|
+
Requires-Dist: qdrant-client==1.9.2
|
86
|
+
Requires-Dist: qianfan==0.3.5
|
87
|
+
Requires-Dist: ragstack-ai-knowledge-store==0.2.1
|
88
|
+
Requires-Dist: redis==5.2.1
|
89
|
+
Requires-Dist: spider-client==0.1.24
|
90
|
+
Requires-Dist: sqlalchemy[aiosqlite,postgresql-psycopg2binary,postgresql-psycopgbinary]<3.0.0,>=2.0.36
|
91
|
+
Requires-Dist: sseclient-py==1.8.0
|
92
|
+
Requires-Dist: supabase==2.6.0
|
93
|
+
Requires-Dist: types-cachetools==5.5.0.20240820
|
94
|
+
Requires-Dist: upstash-vector==0.6.0
|
95
|
+
Requires-Dist: uv>=0.5.7
|
96
|
+
Requires-Dist: weaviate-client==4.10.2
|
97
|
+
Requires-Dist: wikipedia==1.4.0
|
98
|
+
Requires-Dist: wolframalpha==5.1.3
|
99
|
+
Requires-Dist: yfinance==0.2.50
|
100
|
+
Requires-Dist: youtube-transcript-api==0.6.3
|
101
|
+
Requires-Dist: zep-python==2.0.2
|
102
|
+
Provides-Extra: cassio
|
103
|
+
Requires-Dist: cassio>=0.1.7; extra == 'cassio'
|
104
|
+
Provides-Extra: clickhouse-connect
|
105
|
+
Requires-Dist: clickhouse-connect==0.7.19; extra == 'clickhouse-connect'
|
106
|
+
Provides-Extra: couchbase
|
107
|
+
Requires-Dist: couchbase>=4.2.1; extra == 'couchbase'
|
108
|
+
Provides-Extra: deploy
|
109
|
+
Requires-Dist: celery[redis]>=5.3.6; extra == 'deploy'
|
110
|
+
Requires-Dist: flower>=2.0.0; extra == 'deploy'
|
111
|
+
Provides-Extra: local
|
112
|
+
Requires-Dist: ctransformers>=0.2.10; extra == 'local'
|
113
|
+
Requires-Dist: llama-cpp-python~=0.2.0; extra == 'local'
|
114
|
+
Requires-Dist: sentence-transformers>=2.3.1; extra == 'local'
|
115
|
+
Description-Content-Type: text/markdown
|
116
|
+
|
117
|
+
<!-- markdownlint-disable MD030 -->
|
118
|
+
|
119
|
+

|
120
|
+
|
121
|
+
<p align="center" style="font-size: 12px;">
|
122
|
+
Langflow is a low-code app builder for RAG and multi-agent AI applications. It’s Python-based and agnostic to any model, API, or database.
|
123
|
+
</p>
|
124
|
+
|
125
|
+
<p align="center" style="font-size: 12px;">
|
126
|
+
<a href="https://docs.langflow.org" style="text-decoration: underline;">Docs</a> -
|
127
|
+
<a href="https://astra.datastax.com/signup?type=langflow" style="text-decoration: underline;">Free Cloud Service</a> -
|
128
|
+
<a href="https://docs.langflow.org/get-started-installation" style="text-decoration: underline;">Self Managed</a>
|
129
|
+
|
130
|
+
</p>
|
131
|
+
|
132
|
+
<div align="center">
|
133
|
+
<a href="./README.md"><img alt="README in English" src="https://img.shields.io/badge/English-d9d9d9"></a>
|
134
|
+
<a href="./README.PT.md"><img alt="README in Portuguese" src="https://img.shields.io/badge/Portuguese-d9d9d9"></a>
|
135
|
+
<a href="./README.ES.md"><img alt="README in Spanish" src="https://img.shields.io/badge/Spanish-d9d9d9"></a>
|
136
|
+
<a href="./README.zh_CN.md"><img alt="README in Simplified Chinese" src="https://img.shields.io/badge/简体中文-d9d9d9"></a>
|
137
|
+
<a href="./README.ja.md"><img alt="README in Japanese" src="https://img.shields.io/badge/日本語-d9d9d9"></a>
|
138
|
+
<a href="./README.KR.md"><img alt="README in KOREAN" src="https://img.shields.io/badge/한국어-d9d9d9"></a>
|
139
|
+
<a href="./README.FR.md"><img alt="README in French" src="https://img.shields.io/badge/Français-d9d9d9"></a>
|
140
|
+
</div>
|
141
|
+
|
142
|
+
## ✨ Core features
|
143
|
+
|
144
|
+
1. **Python-based** and agnostic to models, APIs, data sources, or databases.
|
145
|
+
2. **Visual IDE** for drag-and-drop building and testing of workflows.
|
146
|
+
3. **Playground** to immediately test and iterate workflows with step-by-step control.
|
147
|
+
4. **Multi-agent** orchestration and conversation management and retrieval.
|
148
|
+
5. **Free cloud service** to get started in minutes with no setup.
|
149
|
+
6. **Publish as an API** or export as a Python application.
|
150
|
+
7. **Observability** with LangSmith, LangFuse, or LangWatch integration.
|
151
|
+
8. **Enterprise-grade** security and scalability with free DataStax Langflow cloud service.
|
152
|
+
9. **Customize workflows** or create flows entirely just using Python.
|
153
|
+
10. **Ecosystem integrations** as reusable components for any model, API or database.
|
154
|
+
|
155
|
+

|
156
|
+
|
157
|
+
## 📦 Quickstart
|
158
|
+
|
159
|
+
- **Install with uv (recommended)** (Python 3.10 to 3.12):
|
160
|
+
|
161
|
+
```shell
|
162
|
+
uv pip install langflow
|
163
|
+
```
|
164
|
+
|
165
|
+
- **Install with pip** (Python 3.10 to 3.12):
|
166
|
+
|
167
|
+
```shell
|
168
|
+
pip install langflow
|
169
|
+
```
|
170
|
+
|
171
|
+
- **Cloud:** DataStax Langflow is a hosted environment with zero setup. [Sign up for a free account.](https://astra.datastax.com/signup?type=langflow)
|
172
|
+
- **Self-managed:** Run Langflow in your environment. [Install Langflow](https://docs.langflow.org/get-started-installation) to run a local Langflow server, and then use the [Quickstart](https://docs.langflow.org/get-started-quickstart) guide to create and execute a flow.
|
173
|
+
- **Hugging Face:** [Clone the space using this link](https://huggingface.co/spaces/Langflow/Langflow?duplicate=true) to create a Langflow workspace.
|
174
|
+
|
175
|
+
[](https://www.youtube.com/watch?v=kinngWhaUKM)
|
176
|
+
|
177
|
+
## ⭐ Stay up-to-date
|
178
|
+
|
179
|
+
Star Langflow on GitHub to be instantly notified of new releases.
|
180
|
+
|
181
|
+

|
182
|
+
|
183
|
+
## 👋 Contribute
|
184
|
+
|
185
|
+
We welcome contributions from developers of all levels. If you'd like to contribute, please check our [contributing guidelines](./CONTRIBUTING.md) and help make Langflow more accessible.
|
186
|
+
|
187
|
+
---
|
188
|
+
|
189
|
+
[](https://star-history.com/#langflow-ai/langflow&Date)
|
190
|
+
|
191
|
+
## ❤️ Contributors
|
192
|
+
|
193
|
+
[](https://github.com/langflow-ai/langflow/graphs/contributors)
|
@@ -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.1.1.dev30.dist-info/METADATA,sha256=ULiWt2k8BKLGyo-7sGfjgkiDa9HKxbHQVuU983qHdvE,8749
|
4
|
+
langflow_nightly-1.1.1.dev30.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
5
|
+
langflow_nightly-1.1.1.dev30.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
|
6
|
+
langflow_nightly-1.1.1.dev30.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
|
7
|
+
langflow_nightly-1.1.1.dev30.dist-info/RECORD,,
|
@@ -1,94 +0,0 @@
|
|
1
|
-
Metadata-Version: 2.3
|
2
|
-
Name: langflow-nightly
|
3
|
-
Version: 1.0.18.dev15
|
4
|
-
Summary: A Python package with a built-in web application
|
5
|
-
License-File: LICENSE
|
6
|
-
Requires-Python: <3.13,>=3.10
|
7
|
-
Requires-Dist: assemblyai>=0.33.0
|
8
|
-
Requires-Dist: astra-assistants>=2.1.2
|
9
|
-
Requires-Dist: beautifulsoup4>=4.12.2
|
10
|
-
Requires-Dist: boto3~=1.34.162
|
11
|
-
Requires-Dist: certifi<2025.0.0,>=2023.11.17
|
12
|
-
Requires-Dist: chromadb>=0.4
|
13
|
-
Requires-Dist: cohere>=5.5.3
|
14
|
-
Requires-Dist: composio-langchain==0.5.9
|
15
|
-
Requires-Dist: dspy-ai>=2.4.0
|
16
|
-
Requires-Dist: duckduckgo-search>=6.2.11
|
17
|
-
Requires-Dist: elasticsearch>=8.12.0
|
18
|
-
Requires-Dist: faiss-cpu>=1.8.0
|
19
|
-
Requires-Dist: fake-useragent>=1.5.0
|
20
|
-
Requires-Dist: fastavro>=1.8.0
|
21
|
-
Requires-Dist: firecrawl-py>=0.0.16
|
22
|
-
Requires-Dist: gitpython>=3.1.43
|
23
|
-
Requires-Dist: google-api-python-client>=2.130.0
|
24
|
-
Requires-Dist: google-search-results>=2.4.1
|
25
|
-
Requires-Dist: huggingface-hub[inference]>=0.23.2
|
26
|
-
Requires-Dist: jq>=1.8.0
|
27
|
-
Requires-Dist: json-repair>=0.25.2
|
28
|
-
Requires-Dist: kubernetes>=30.1.0
|
29
|
-
Requires-Dist: langchain-anthropic>=0.1.23
|
30
|
-
Requires-Dist: langchain-astradb>=0.3.5
|
31
|
-
Requires-Dist: langchain-aws>=0.1.16
|
32
|
-
Requires-Dist: langchain-chroma>=0.1.1
|
33
|
-
Requires-Dist: langchain-cohere>=0.1.5
|
34
|
-
Requires-Dist: langchain-google-calendar-tools>=0.0.1
|
35
|
-
Requires-Dist: langchain-google-community==1.0.7
|
36
|
-
Requires-Dist: langchain-google-genai>=1.0.8
|
37
|
-
Requires-Dist: langchain-google-vertexai>=1.0.10
|
38
|
-
Requires-Dist: langchain-groq>=0.1.9
|
39
|
-
Requires-Dist: langchain-milvus>=0.1.1
|
40
|
-
Requires-Dist: langchain-mistralai==0.1.12
|
41
|
-
Requires-Dist: langchain-mongodb>=0.1.6
|
42
|
-
Requires-Dist: langchain-nvidia-ai-endpoints==0.1.6
|
43
|
-
Requires-Dist: langchain-openai==0.1.22
|
44
|
-
Requires-Dist: langchain-pinecone>=0.1.3
|
45
|
-
Requires-Dist: langchain-unstructured>=0.1.2
|
46
|
-
Requires-Dist: langflow-base-nightly==0.0.96.dev16
|
47
|
-
Requires-Dist: langfuse>=2.33.0
|
48
|
-
Requires-Dist: langsmith>=0.1.86
|
49
|
-
Requires-Dist: langwatch>=0.1.16
|
50
|
-
Requires-Dist: lark>=1.2.2
|
51
|
-
Requires-Dist: litellm>=1.44.0
|
52
|
-
Requires-Dist: markdown>=3.7
|
53
|
-
Requires-Dist: markupsafe>=2.1.3
|
54
|
-
Requires-Dist: metal-sdk>=2.5.0
|
55
|
-
Requires-Dist: metaphor-python>=0.1.11
|
56
|
-
Requires-Dist: networkx>=3.1
|
57
|
-
Requires-Dist: nltk>=3.9.1
|
58
|
-
Requires-Dist: numexpr>=2.8.6
|
59
|
-
Requires-Dist: pgvector>=0.2.3
|
60
|
-
Requires-Dist: psycopg2-binary>=2.9.6
|
61
|
-
Requires-Dist: psycopg>=3.1.9
|
62
|
-
Requires-Dist: pyarrow>=14.0.0
|
63
|
-
Requires-Dist: pyautogen>=0.2.0
|
64
|
-
Requires-Dist: pydantic-settings==2.4.0
|
65
|
-
Requires-Dist: pymongo>=4.6.0
|
66
|
-
Requires-Dist: pytube>=15.0.0
|
67
|
-
Requires-Dist: pywin32>=306; sys_platform == 'win32'
|
68
|
-
Requires-Dist: qdrant-client>=1.9.0
|
69
|
-
Requires-Dist: qianfan==0.3.5
|
70
|
-
Requires-Dist: ragstack-ai-knowledge-store>=0.2.1
|
71
|
-
Requires-Dist: redis>=5.0.1
|
72
|
-
Requires-Dist: spider-client>=0.0.27
|
73
|
-
Requires-Dist: supabase>=2.3.0
|
74
|
-
Requires-Dist: types-cachetools>=5.3.0.5
|
75
|
-
Requires-Dist: upstash-vector>=0.5.0
|
76
|
-
Requires-Dist: weaviate-client>=4.8
|
77
|
-
Requires-Dist: wikipedia>=1.4.0
|
78
|
-
Requires-Dist: wolframalpha>=5.1.3
|
79
|
-
Requires-Dist: yfinance>=0.2.40
|
80
|
-
Requires-Dist: youtube-transcript-api>=0.6.2
|
81
|
-
Requires-Dist: zep-python>=2.0.0rc5
|
82
|
-
Provides-Extra: cassio
|
83
|
-
Requires-Dist: cassio>=0.1.7; extra == 'cassio'
|
84
|
-
Provides-Extra: clickhouse-connect
|
85
|
-
Requires-Dist: clickhouse-connect==0.7.19; extra == 'clickhouse-connect'
|
86
|
-
Provides-Extra: couchbase
|
87
|
-
Requires-Dist: couchbase>=4.2.1; extra == 'couchbase'
|
88
|
-
Provides-Extra: deploy
|
89
|
-
Requires-Dist: celery[redis]>=5.3.6; extra == 'deploy'
|
90
|
-
Requires-Dist: flower>=2.0.0; extra == 'deploy'
|
91
|
-
Provides-Extra: local
|
92
|
-
Requires-Dist: ctransformers>=0.2.10; extra == 'local'
|
93
|
-
Requires-Dist: llama-cpp-python~=0.2.0; extra == 'local'
|
94
|
-
Requires-Dist: sentence-transformers>=2.3.1; extra == 'local'
|
@@ -1,7 +0,0 @@
|
|
1
|
-
langflow/version/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
langflow/version/version.py,sha256=6fea858NTeZBh9iACirPbcpGQK9zNRyleVd9lB0YZjc,1076
|
3
|
-
langflow_nightly-1.0.18.dev15.dist-info/METADATA,sha256=tmrpY39zEEtPTYlkIdIDGlyS4Cc1WCsHW4s4C1nxjac,3537
|
4
|
-
langflow_nightly-1.0.18.dev15.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
5
|
-
langflow_nightly-1.0.18.dev15.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
|
6
|
-
langflow_nightly-1.0.18.dev15.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
|
7
|
-
langflow_nightly-1.0.18.dev15.dist-info/RECORD,,
|
{langflow_nightly-1.0.18.dev15.dist-info → langflow_nightly-1.1.1.dev30.dist-info}/entry_points.txt
RENAMED
File without changes
|
{langflow_nightly-1.0.18.dev15.dist-info → langflow_nightly-1.1.1.dev30.dist-info}/licenses/LICENSE
RENAMED
File without changes
|