langflow-base-nightly 1.7.0.dev55__py3-none-any.whl → 1.7.0.dev57__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/api/v2/files.py +6 -6
- langflow/initial_setup/starter_projects/Basic Prompt Chaining.json +31 -1088
- langflow/initial_setup/starter_projects/Basic Prompting.json +196 -135
- langflow/initial_setup/starter_projects/Blog Writer.json +141 -84
- langflow/initial_setup/starter_projects/Custom Component Generator.json +133 -73
- langflow/initial_setup/starter_projects/Document Q&A.json +136 -81
- langflow/initial_setup/starter_projects/Financial Report Parser.json +12 -365
- langflow/initial_setup/starter_projects/Hybrid Search RAG.json +19 -729
- langflow/initial_setup/starter_projects/Image Sentiment Analysis.json +688 -733
- langflow/initial_setup/starter_projects/Instagram Copywriter.json +322 -203
- langflow/initial_setup/starter_projects/Invoice Summarizer.json +47 -21
- langflow/initial_setup/starter_projects/Market Research.json +63 -394
- langflow/initial_setup/starter_projects/Meeting Summary.json +266 -168
- langflow/initial_setup/starter_projects/Memory Chatbot.json +136 -81
- langflow/initial_setup/starter_projects/News Aggregator.json +49 -24
- langflow/initial_setup/starter_projects/Nvidia Remix.json +48 -23
- langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +49 -23
- langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json +113 -418
- langflow/initial_setup/starter_projects/Price Deal Finder.json +48 -22
- langflow/initial_setup/starter_projects/Research Agent.json +319 -181
- langflow/initial_setup/starter_projects/Research Translation Loop.json +636 -615
- langflow/initial_setup/starter_projects/SEO Keyword Generator.json +145 -89
- langflow/initial_setup/starter_projects/SaaS Pricing.json +48 -22
- langflow/initial_setup/starter_projects/Search agent.json +47 -21
- langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +147 -54
- langflow/initial_setup/starter_projects/Simple Agent.json +47 -16
- langflow/initial_setup/starter_projects/Social Media Agent.json +47 -16
- langflow/initial_setup/starter_projects/Text Sentiment Analysis.json +398 -251
- langflow/initial_setup/starter_projects/Travel Planning Agents.json +146 -53
- langflow/initial_setup/starter_projects/Twitter Thread Generator.json +137 -81
- langflow/initial_setup/starter_projects/Vector Store RAG.json +133 -82
- langflow/initial_setup/starter_projects/Youtube Analysis.json +182 -106
- langflow/services/storage/local.py +13 -8
- langflow/services/storage/s3.py +0 -6
- {langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/METADATA +2 -2
- {langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/RECORD +38 -38
- {langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/WHEEL +0 -0
- {langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/entry_points.txt +0 -0
|
@@ -59,11 +59,12 @@ class LocalStorageService(StorageService):
|
|
|
59
59
|
return str(self.data_dir / flow_id / file_name)
|
|
60
60
|
|
|
61
61
|
def parse_file_path(self, full_path: str) -> tuple[str, str]:
|
|
62
|
-
"""Parse a full local storage path to extract flow_id and file_name.
|
|
62
|
+
r"""Parse a full local storage path to extract flow_id and file_name.
|
|
63
63
|
|
|
64
64
|
Args:
|
|
65
65
|
full_path: Filesystem path, may or may not include data_dir
|
|
66
|
-
e.g., "/data/user_123/image.png" or "user_123/image.png"
|
|
66
|
+
e.g., "/data/user_123/image.png" or "user_123/image.png". On Windows the
|
|
67
|
+
separators may be backslashes ("\\"). This method handles both.
|
|
67
68
|
|
|
68
69
|
Returns:
|
|
69
70
|
tuple[str, str]: A tuple of (flow_id, file_name)
|
|
@@ -79,15 +80,19 @@ class LocalStorageService(StorageService):
|
|
|
79
80
|
# Remove data_dir if present (but don't require it)
|
|
80
81
|
path_without_prefix = full_path
|
|
81
82
|
if full_path.startswith(data_dir_str):
|
|
82
|
-
|
|
83
|
+
# Strip both POSIX and Windows separators
|
|
84
|
+
path_without_prefix = full_path[len(data_dir_str) :].lstrip("/").lstrip("\\")
|
|
83
85
|
|
|
84
|
-
#
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
86
|
+
# Normalize separators so downstream logic is platform-agnostic
|
|
87
|
+
normalized_path = path_without_prefix.replace("\\", "/")
|
|
88
|
+
|
|
89
|
+
# Split from the right to get the filename; everything before the last
|
|
90
|
+
# "/" is the flow_id
|
|
91
|
+
if "/" not in normalized_path:
|
|
92
|
+
return "", normalized_path
|
|
88
93
|
|
|
89
94
|
# Use rsplit to split from the right, limiting to 1 split
|
|
90
|
-
flow_id, file_name =
|
|
95
|
+
flow_id, file_name = normalized_path.rsplit("/", 1)
|
|
91
96
|
return flow_id, file_name
|
|
92
97
|
|
|
93
98
|
async def save_file(self, flow_id: str, file_name: str, data: bytes, *, append: bool = False) -> None:
|
langflow/services/storage/s3.py
CHANGED
|
@@ -241,8 +241,6 @@ class S3StorageService(StorageService):
|
|
|
241
241
|
with contextlib.suppress(Exception):
|
|
242
242
|
await body.close()
|
|
243
243
|
|
|
244
|
-
logger.debug(f"File {file_name} streamed successfully from S3: s3://{self.bucket_name}/{key}")
|
|
245
|
-
|
|
246
244
|
except Exception as e:
|
|
247
245
|
if hasattr(e, "response") and e.response.get("Error", {}).get("Code") == "NoSuchKey":
|
|
248
246
|
await logger.awarning(f"File {file_name} not found in S3 flow {flow_id}")
|
|
@@ -284,7 +282,6 @@ class S3StorageService(StorageService):
|
|
|
284
282
|
if file_name: # Skip the directory marker if it exists
|
|
285
283
|
files.append(file_name)
|
|
286
284
|
|
|
287
|
-
await logger.ainfo(f"Listed {len(files)} files in S3 flow {flow_id}")
|
|
288
285
|
except Exception:
|
|
289
286
|
logger.exception(f"Error listing files in S3 flow {flow_id}")
|
|
290
287
|
raise
|
|
@@ -307,8 +304,6 @@ class S3StorageService(StorageService):
|
|
|
307
304
|
async with self._get_client() as s3_client:
|
|
308
305
|
await s3_client.delete_object(Bucket=self.bucket_name, Key=key)
|
|
309
306
|
|
|
310
|
-
await logger.ainfo(f"File {file_name} deleted successfully from S3: s3://{self.bucket_name}/{key}")
|
|
311
|
-
|
|
312
307
|
except Exception:
|
|
313
308
|
logger.exception(f"Error deleting file {file_name} from S3 in flow {flow_id}")
|
|
314
309
|
raise
|
|
@@ -333,7 +328,6 @@ class S3StorageService(StorageService):
|
|
|
333
328
|
response = await s3_client.head_object(Bucket=self.bucket_name, Key=key)
|
|
334
329
|
file_size = response["ContentLength"]
|
|
335
330
|
|
|
336
|
-
logger.debug(f"File {file_name} size: {file_size} bytes")
|
|
337
331
|
except Exception as e:
|
|
338
332
|
# Check if it's a 404 error
|
|
339
333
|
if hasattr(e, "response") and e.response.get("Error", {}).get("Code") in ["NoSuchKey", "404"]:
|
{langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langflow-base-nightly
|
|
3
|
-
Version: 1.7.0.
|
|
3
|
+
Version: 1.7.0.dev57
|
|
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
|
|
@@ -46,7 +46,7 @@ Requires-Dist: langchain-experimental<1.0.0,>=0.3.0
|
|
|
46
46
|
Requires-Dist: langchain-ibm<1.0.0,>=0.3.8
|
|
47
47
|
Requires-Dist: langchainhub~=0.1.15
|
|
48
48
|
Requires-Dist: langchain~=0.3.21
|
|
49
|
-
Requires-Dist: lfx-nightly==0.2.0.
|
|
49
|
+
Requires-Dist: lfx-nightly==0.2.0.dev57
|
|
50
50
|
Requires-Dist: loguru<1.0.0,>=0.7.1
|
|
51
51
|
Requires-Dist: mcp<2.0.0,>=1.17.0
|
|
52
52
|
Requires-Dist: multiprocess<1.0.0,>=0.70.14
|
{langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/RECORD
RENAMED
|
@@ -122,7 +122,7 @@ langflow/api/v1/validate.py,sha256=Ixsdn8bdaZu9OvEhCDyjPeixibl5ZyM1EhUOWLCR6v4,1
|
|
|
122
122
|
langflow/api/v1/variable.py,sha256=xC9UaVAvK2vTk2UxYajZMBPfbctJhtII71E3uVZmSPU,9165
|
|
123
123
|
langflow/api/v1/voice_mode.py,sha256=cNQzJAoL_tW582JnJEQn-Hk6M2XWLP5Cd_i3gJOe2fs,60321
|
|
124
124
|
langflow/api/v2/__init__.py,sha256=VCQh31dvZLN_q-i2xYGXyNbo1BCAuQmNiXhuE7NHd7o,261
|
|
125
|
-
langflow/api/v2/files.py,sha256=
|
|
125
|
+
langflow/api/v2/files.py,sha256=gTSURXoqeAqdRnFJdOoDgk2Gei8v2SqZYEX4dC1F0VA,32982
|
|
126
126
|
langflow/api/v2/mcp.py,sha256=G4P7EbrhGG997ZDf8YBI65PLFVl7sPxRe-nfqgratnQ,13320
|
|
127
127
|
langflow/api/v2/registration.py,sha256=uPgDLKajJp6LZWNkR1Li0nzAXobcj_WAPdlvWlgQD3I,4645
|
|
128
128
|
langflow/base/__init__.py,sha256=8i3qZNo6iAtWMi4FUDgMksSgmBKuL0N-D6YOOuR4HTs,281
|
|
@@ -2034,39 +2034,39 @@ langflow/initial_setup/profile_pictures/Space/047-computer.svg,sha256=J7xvt6THPE
|
|
|
2034
2034
|
langflow/initial_setup/profile_pictures/Space/048-satellite.svg,sha256=WhKM7trc3c3fBlvJ3nMukEtg4kV5Ayh8cfuVDeYqFJ4,17879
|
|
2035
2035
|
langflow/initial_setup/profile_pictures/Space/049-astronaut.svg,sha256=0ovhZ0SR3Id8a1VfwkUzljtaYKf6i2pfNLuTr8inTDs,8671
|
|
2036
2036
|
langflow/initial_setup/profile_pictures/Space/050-space robot.svg,sha256=QIP9tuThFuutjd1dcx-rXUi1_S9GGmMbqFkXDqg_0fw,15844
|
|
2037
|
-
langflow/initial_setup/starter_projects/Basic Prompt Chaining.json,sha256=
|
|
2038
|
-
langflow/initial_setup/starter_projects/Basic Prompting.json,sha256=
|
|
2039
|
-
langflow/initial_setup/starter_projects/Blog Writer.json,sha256=
|
|
2040
|
-
langflow/initial_setup/starter_projects/Custom Component Generator.json,sha256=
|
|
2041
|
-
langflow/initial_setup/starter_projects/Document Q&A.json,sha256=
|
|
2042
|
-
langflow/initial_setup/starter_projects/Financial Report Parser.json,sha256=
|
|
2043
|
-
langflow/initial_setup/starter_projects/Hybrid Search RAG.json,sha256=
|
|
2044
|
-
langflow/initial_setup/starter_projects/Image Sentiment Analysis.json,sha256=
|
|
2045
|
-
langflow/initial_setup/starter_projects/Instagram Copywriter.json,sha256=
|
|
2046
|
-
langflow/initial_setup/starter_projects/Invoice Summarizer.json,sha256=
|
|
2037
|
+
langflow/initial_setup/starter_projects/Basic Prompt Chaining.json,sha256=wFBiRTeepIHa-7N8kIgB8i67I1CdEvzHZH8a-fAuuts,58581
|
|
2038
|
+
langflow/initial_setup/starter_projects/Basic Prompting.json,sha256=L0wMImAo71-Ui0SaxTTFIKlWDqlk6DYZZoppqC-WJK8,60439
|
|
2039
|
+
langflow/initial_setup/starter_projects/Blog Writer.json,sha256=z2nbznPG1ga9YR15MrC54MBZAuHzLT6elTgXFhZkq9E,92937
|
|
2040
|
+
langflow/initial_setup/starter_projects/Custom Component Generator.json,sha256=sucgQH_0F0d4HH6s5RvMbXiAgFJSqGiuJ9zCD8MbafA,167372
|
|
2041
|
+
langflow/initial_setup/starter_projects/Document Q&A.json,sha256=IfthmA_425FzJ_su-_R7o1x3Vcjiadj1w3vj82qLPiE,120368
|
|
2042
|
+
langflow/initial_setup/starter_projects/Financial Report Parser.json,sha256=7jyTR7LMY2bShAHydG3V9YzO8dvnxx5v9isgGnfboek,74145
|
|
2043
|
+
langflow/initial_setup/starter_projects/Hybrid Search RAG.json,sha256=3LIq3YVjoljlQUpH2shUqK_8dys53pqvPxk1RMIX7ko,141460
|
|
2044
|
+
langflow/initial_setup/starter_projects/Image Sentiment Analysis.json,sha256=kAH3LtTLdKJvtvL6vq3NtuNMRMwhpjqm0Ts0eqCtlMU,109291
|
|
2045
|
+
langflow/initial_setup/starter_projects/Instagram Copywriter.json,sha256=cQlBc2NtyWOiV69TVHLV_WajmtLME60cWk1nBskWa-g,174488
|
|
2046
|
+
langflow/initial_setup/starter_projects/Invoice Summarizer.json,sha256=xS6VwKafiZHjJkxzPIVeAEGmRIG5ObzvEuHQEGtJcMo,97983
|
|
2047
2047
|
langflow/initial_setup/starter_projects/Knowledge Ingestion.json,sha256=8isM_kqbB3JvJY09wM1dL2NJyJySY7woFr3h4FrU1lQ,88062
|
|
2048
2048
|
langflow/initial_setup/starter_projects/Knowledge Retrieval.json,sha256=e8GAyqHQnDB-F3Qpta8-oz5i1IKPhIgknlT4a4YaiHQ,45918
|
|
2049
|
-
langflow/initial_setup/starter_projects/Market Research.json,sha256=
|
|
2050
|
-
langflow/initial_setup/starter_projects/Meeting Summary.json,sha256=
|
|
2051
|
-
langflow/initial_setup/starter_projects/Memory Chatbot.json,sha256=
|
|
2052
|
-
langflow/initial_setup/starter_projects/News Aggregator.json,sha256=
|
|
2053
|
-
langflow/initial_setup/starter_projects/Nvidia Remix.json,sha256=
|
|
2054
|
-
langflow/initial_setup/starter_projects/Pokédex Agent.json,sha256=
|
|
2055
|
-
langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json,sha256=
|
|
2056
|
-
langflow/initial_setup/starter_projects/Price Deal Finder.json,sha256=
|
|
2057
|
-
langflow/initial_setup/starter_projects/Research Agent.json,sha256=
|
|
2058
|
-
langflow/initial_setup/starter_projects/Research Translation Loop.json,sha256=
|
|
2059
|
-
langflow/initial_setup/starter_projects/SEO Keyword Generator.json,sha256=
|
|
2060
|
-
langflow/initial_setup/starter_projects/SaaS Pricing.json,sha256=
|
|
2061
|
-
langflow/initial_setup/starter_projects/Search agent.json,sha256=
|
|
2062
|
-
langflow/initial_setup/starter_projects/Sequential Tasks Agents.json,sha256=
|
|
2063
|
-
langflow/initial_setup/starter_projects/Simple Agent.json,sha256=
|
|
2064
|
-
langflow/initial_setup/starter_projects/Social Media Agent.json,sha256=
|
|
2065
|
-
langflow/initial_setup/starter_projects/Text Sentiment Analysis.json,sha256=
|
|
2066
|
-
langflow/initial_setup/starter_projects/Travel Planning Agents.json,sha256=
|
|
2067
|
-
langflow/initial_setup/starter_projects/Twitter Thread Generator.json,sha256=
|
|
2068
|
-
langflow/initial_setup/starter_projects/Vector Store RAG.json,sha256=
|
|
2069
|
-
langflow/initial_setup/starter_projects/Youtube Analysis.json,sha256=
|
|
2049
|
+
langflow/initial_setup/starter_projects/Market Research.json,sha256=0BJp8fgv7tPBOUSEyjGa5Pi6v-aXN7_TNuNVZeiIpX8,141482
|
|
2050
|
+
langflow/initial_setup/starter_projects/Meeting Summary.json,sha256=p5se7Os5G6836pD0M1tllWogkUXYF6xOFqA3Fa9SNg0,196168
|
|
2051
|
+
langflow/initial_setup/starter_projects/Memory Chatbot.json,sha256=QN6fj_huXN3BVXzsVxCM2H_GThk7PierHl-Q-1aCVik,85859
|
|
2052
|
+
langflow/initial_setup/starter_projects/News Aggregator.json,sha256=ssURoe5Noq6tw_GaDVQothf4XmPHR4GLp8-fB2zTBe8,152883
|
|
2053
|
+
langflow/initial_setup/starter_projects/Nvidia Remix.json,sha256=liKYtztELrlGOrL5C2mxi3akau2GoVKrmGPiB-_TxGw,330204
|
|
2054
|
+
langflow/initial_setup/starter_projects/Pokédex Agent.json,sha256=aDjMmf0apy_bqT6SwpFgP3THtsYrbjT5GfrGydfbs_g,116273
|
|
2055
|
+
langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json,sha256=MIw3tW5B2DKh1ft6LvaOxqdEyw-MaIvZEh29X4zVHp8,154017
|
|
2056
|
+
langflow/initial_setup/starter_projects/Price Deal Finder.json,sha256=6hpXozIHVqWW--STubpcFfarnRHI8l8jluA1A3SGJmQ,122319
|
|
2057
|
+
langflow/initial_setup/starter_projects/Research Agent.json,sha256=W6Lr1SqOG_M44fUy69BxWaHyCZNp_G39lY526wWYvf4,174476
|
|
2058
|
+
langflow/initial_setup/starter_projects/Research Translation Loop.json,sha256=NN4EP48IDWyyzUJYT0w27Tqfr-DUD_omZU6PFGXnJjI,98119
|
|
2059
|
+
langflow/initial_setup/starter_projects/SEO Keyword Generator.json,sha256=Rtkw0FYM5LT_XLh3O3pjBZD3TPV9Q5j9XxyvEP-qR-w,64517
|
|
2060
|
+
langflow/initial_setup/starter_projects/SaaS Pricing.json,sha256=NEJuqXHdGsYA8AwvT4l6dUE6u7Nt9bJ1-6zz9krZlmo,84666
|
|
2061
|
+
langflow/initial_setup/starter_projects/Search agent.json,sha256=GRuP_H0fsNNlktQyUXxysjIccuSR8wYrUkdMn0ah3a8,85405
|
|
2062
|
+
langflow/initial_setup/starter_projects/Sequential Tasks Agents.json,sha256=E707WfguZqBUkCIUdGgc6rTdztRjtvhvtIou8D3lEkk,246716
|
|
2063
|
+
langflow/initial_setup/starter_projects/Simple Agent.json,sha256=2S-zzSyl0X1Y_Kl7PXcHPyIee8B2gsDPOPjs2c_HrAM,113885
|
|
2064
|
+
langflow/initial_setup/starter_projects/Social Media Agent.json,sha256=mVFF-nPmRdlRoTPGqk91PQwfw5XenP_b8FR5iBsuCgs,123343
|
|
2065
|
+
langflow/initial_setup/starter_projects/Text Sentiment Analysis.json,sha256=reQj45LbC_6gSLSoHkYjyFee2rX19pgbj5cNsArcqfw,187570
|
|
2066
|
+
langflow/initial_setup/starter_projects/Travel Planning Agents.json,sha256=O0T6vTWz3UnGYwG46mT4mM2OdyTqXU_hDId3PNLudBM,209515
|
|
2067
|
+
langflow/initial_setup/starter_projects/Twitter Thread Generator.json,sha256=kA4QWMgOnFeJpoQuiaitWutppJXqmsnir0InqrNU9kM,102944
|
|
2068
|
+
langflow/initial_setup/starter_projects/Vector Store RAG.json,sha256=Z5b6n-cFwKjxfK9YgpMtFBBlS8btP9Jzh1gH8B0Mkf0,308510
|
|
2069
|
+
langflow/initial_setup/starter_projects/Youtube Analysis.json,sha256=ytfCn6ff-n7IOeL6oifJW4mRXLZ1Cn2fPJlLNd__yws,178152
|
|
2070
2070
|
langflow/initial_setup/starter_projects/__init__.py,sha256=c5Z92jvCm680uhVKycyps-BX-lEHjjPKWcsI86METUA,673
|
|
2071
2071
|
langflow/initial_setup/starter_projects/basic_prompting.py,sha256=NjQ3U0T4M-wNiKYfBubC2M1PnvHp2FZEeUoo9fXgKBc,844
|
|
2072
2072
|
langflow/initial_setup/starter_projects/blog_writer.py,sha256=1xkL7Cn5OlVNi5Kee4qVlw6OUF7CvIkkvRXVm8g4CVo,1476
|
|
@@ -2202,8 +2202,8 @@ langflow/services/state/factory.py,sha256=7YDi52LZ427X6Hz1CpfKN65I469jjWTxGb5rv9
|
|
|
2202
2202
|
langflow/services/state/service.py,sha256=XiB_Wkza1oJGV8spHOorqPomrHhDt0CgcrCiUhWGJd4,3020
|
|
2203
2203
|
langflow/services/storage/__init__.py,sha256=kTXDIAgYiOefDNKBMCu-hpS4sWKWAVygpltGX8DcUgU,181
|
|
2204
2204
|
langflow/services/storage/factory.py,sha256=RLzRd7Ow1Wd2HnJxH-6j7IGn2_dQ1rmUVSFA5mJeqKI,1154
|
|
2205
|
-
langflow/services/storage/local.py,sha256=
|
|
2206
|
-
langflow/services/storage/s3.py,sha256=
|
|
2205
|
+
langflow/services/storage/local.py,sha256=i5C_vEnrKyZMIspJWwf6GTdKfSM4-qHYr24pww86QiI,9076
|
|
2206
|
+
langflow/services/storage/s3.py,sha256=DSSuN3UpwB7b2KH_tZqbf9iqUwh_2FQeG5ZgOfjSnck,13275
|
|
2207
2207
|
langflow/services/storage/service.py,sha256=nCJh8mvpFrOIZ6TXbGDV3zCf-29WT8JUDf_Gr2nuHJQ,2787
|
|
2208
2208
|
langflow/services/storage/utils.py,sha256=MS3-vIC0IVQhOrnMl-ODYwRpkuUZ1l-eIFytvWM9FwM,120
|
|
2209
2209
|
langflow/services/store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2277,7 +2277,7 @@ langflow/utils/util.py,sha256=bZqi9Fqj2mlp9tKUA-Q4ePpooxtbuVLjlAvdml4kcjs,1516
|
|
|
2277
2277
|
langflow/utils/validate.py,sha256=BPqoIMvjl4wbMJTTWo1zMHP0kQCa2TfmDT9f-nPT9Ng,112
|
|
2278
2278
|
langflow/utils/version.py,sha256=OjSj0smls9XnPd4-LpTH9AWyUO_NAn5mncqKkkXl_fw,2840
|
|
2279
2279
|
langflow/utils/voice_utils.py,sha256=Ypxg8s5jFd1o5wBbx1W8oKK7vh4kwo0-iuTcFqIwy5I,3350
|
|
2280
|
-
langflow_base_nightly-1.7.0.
|
|
2281
|
-
langflow_base_nightly-1.7.0.
|
|
2282
|
-
langflow_base_nightly-1.7.0.
|
|
2283
|
-
langflow_base_nightly-1.7.0.
|
|
2280
|
+
langflow_base_nightly-1.7.0.dev57.dist-info/METADATA,sha256=RoSdSBoVyiTv0z8C3pviusTi0LXeViWL9gwwvg6XhJ0,4461
|
|
2281
|
+
langflow_base_nightly-1.7.0.dev57.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
2282
|
+
langflow_base_nightly-1.7.0.dev57.dist-info/entry_points.txt,sha256=JvuLdXSrkeDmDdpb8M-VvFIzb84n4HmqUcIP10_EIF8,57
|
|
2283
|
+
langflow_base_nightly-1.7.0.dev57.dist-info/RECORD,,
|
{langflow_base_nightly-1.7.0.dev55.dist-info → langflow_base_nightly-1.7.0.dev57.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|