langflow-nightly 1.0.18.dev5__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 +0 -0
- langflow/version/version.py +38 -0
- langflow_nightly-1.0.18.dev5.dist-info/METADATA +94 -0
- langflow_nightly-1.0.18.dev5.dist-info/RECORD +7 -0
- langflow_nightly-1.0.18.dev5.dist-info/WHEEL +4 -0
- langflow_nightly-1.0.18.dev5.dist-info/entry_points.txt +2 -0
- langflow_nightly-1.0.18.dev5.dist-info/licenses/LICENSE +21 -0
File without changes
|
@@ -0,0 +1,38 @@
|
|
1
|
+
def get_version() -> str:
|
2
|
+
"""
|
3
|
+
Retrieves the version of the package from a possible list of package names.
|
4
|
+
This accounts for after package names are updated for -nightly builds.
|
5
|
+
|
6
|
+
Returns:
|
7
|
+
str: The version of the package
|
8
|
+
|
9
|
+
Raises:
|
10
|
+
ValueError: If the package is not found from the list of package names.
|
11
|
+
"""
|
12
|
+
from importlib import metadata
|
13
|
+
|
14
|
+
pkg_names = [
|
15
|
+
"langflow",
|
16
|
+
"langflow-base",
|
17
|
+
"langflow-nightly",
|
18
|
+
"langflow-base-nightly",
|
19
|
+
]
|
20
|
+
_version = None
|
21
|
+
for pkg_name in pkg_names:
|
22
|
+
try:
|
23
|
+
_version = metadata.version(pkg_name)
|
24
|
+
except (ImportError, metadata.PackageNotFoundError):
|
25
|
+
pass
|
26
|
+
|
27
|
+
if _version is None:
|
28
|
+
raise ValueError(f"Package not found from options {pkg_names}")
|
29
|
+
|
30
|
+
return _version
|
31
|
+
|
32
|
+
|
33
|
+
def is_pre_release(v: str) -> bool:
|
34
|
+
"""
|
35
|
+
Returns a boolean indicating whether the version is a pre-release version,
|
36
|
+
as per the definition of a pre-release segment from PEP 440.
|
37
|
+
"""
|
38
|
+
return any(label in v for label in ["a", "b", "rc"])
|
@@ -0,0 +1,94 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: langflow-nightly
|
3
|
+
Version: 1.0.18.dev5
|
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.26.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
|
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'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
langflow/version/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
langflow/version/version.py,sha256=6fea858NTeZBh9iACirPbcpGQK9zNRyleVd9lB0YZjc,1076
|
3
|
+
langflow_nightly-1.0.18.dev5.dist-info/METADATA,sha256=IWzaNSEbAZa8wO-YDtMa-XMVCefMAsvrio0KdCZfopk,3522
|
4
|
+
langflow_nightly-1.0.18.dev5.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
5
|
+
langflow_nightly-1.0.18.dev5.dist-info/entry_points.txt,sha256=KuA_Vv7gN2FYO9GXefQck3J4kBMJO_NrECEW_8YkoWk,52
|
6
|
+
langflow_nightly-1.0.18.dev5.dist-info/licenses/LICENSE,sha256=SNSnSWIJqeHy9Uk4QlG2kxk2DDo4Enz1E0c1kL44M1k,1065
|
7
|
+
langflow_nightly-1.0.18.dev5.dist-info/RECORD,,
|
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2024 Langflow
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|