langflow-base-nightly 0.5.1.dev40__py3-none-any.whl → 0.5.1.dev41__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/v1/files.py +1 -1
- langflow/api/v1/mcp_utils.py +1 -1
- langflow/initial_setup/starter_projects/Hybrid Search RAG.json +2 -2
- langflow/initial_setup/starter_projects/Instagram Copywriter.json +1 -1
- langflow/initial_setup/starter_projects/Invoice Summarizer.json +1 -1
- langflow/initial_setup/starter_projects/Knowledge Ingestion.json +1 -1
- langflow/initial_setup/starter_projects/Knowledge Retrieval.json +1 -1
- langflow/initial_setup/starter_projects/Market Research.json +1 -1
- langflow/initial_setup/starter_projects/News Aggregator.json +1 -1
- langflow/initial_setup/starter_projects/Nvidia Remix.json +2 -2
- langflow/initial_setup/starter_projects/Pok/303/251dex Agent.json" +1 -1
- langflow/initial_setup/starter_projects/Price Deal Finder.json +1 -1
- langflow/initial_setup/starter_projects/Research Agent.json +1 -1
- langflow/initial_setup/starter_projects/SaaS Pricing.json +1 -1
- langflow/initial_setup/starter_projects/Search agent.json +1 -1
- langflow/initial_setup/starter_projects/Sequential Tasks Agents.json +4 -4
- langflow/initial_setup/starter_projects/Simple Agent.json +1 -1
- langflow/initial_setup/starter_projects/Social Media Agent.json +3 -3
- langflow/initial_setup/starter_projects/Travel Planning Agents.json +3 -3
- langflow/initial_setup/starter_projects/Vector Store RAG.json +4 -4
- langflow/initial_setup/starter_projects/Youtube Analysis.json +2 -2
- langflow/services/storage/constants.py +28 -0
- langflow/services/storage/utils.py +4 -4
- {langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/METADATA +2 -2
- {langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/RECORD +27 -26
- {langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/WHEEL +0 -0
- {langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/entry_points.txt +0 -0
langflow/api/v1/files.py
CHANGED
|
@@ -9,13 +9,13 @@ from uuid import UUID
|
|
|
9
9
|
from fastapi import APIRouter, Depends, HTTPException, UploadFile
|
|
10
10
|
from fastapi.responses import StreamingResponse
|
|
11
11
|
from lfx.services.settings.service import SettingsService
|
|
12
|
-
from lfx.utils.helpers import build_content_type_from_extension
|
|
13
12
|
|
|
14
13
|
from langflow.api.utils import CurrentActiveUser, DbSession
|
|
15
14
|
from langflow.api.v1.schemas import UploadFileResponse
|
|
16
15
|
from langflow.services.database.models.flow.model import Flow
|
|
17
16
|
from langflow.services.deps import get_settings_service, get_storage_service
|
|
18
17
|
from langflow.services.storage.service import StorageService
|
|
18
|
+
from langflow.services.storage.utils import build_content_type_from_extension
|
|
19
19
|
|
|
20
20
|
router = APIRouter(tags=["Files"], prefix="/files")
|
|
21
21
|
|
langflow/api/v1/mcp_utils.py
CHANGED
|
@@ -15,7 +15,6 @@ from uuid import uuid4
|
|
|
15
15
|
from lfx.base.mcp.constants import MAX_MCP_TOOL_NAME_LENGTH
|
|
16
16
|
from lfx.base.mcp.util import get_flow_snake_case, get_unique_name, sanitize_mcp_name
|
|
17
17
|
from lfx.log.logger import logger
|
|
18
|
-
from lfx.utils.helpers import build_content_type_from_extension
|
|
19
18
|
from mcp import types
|
|
20
19
|
from sqlmodel import select
|
|
21
20
|
|
|
@@ -26,6 +25,7 @@ from langflow.schema.message import Message
|
|
|
26
25
|
from langflow.services.database.models import Flow
|
|
27
26
|
from langflow.services.database.models.user.model import User
|
|
28
27
|
from langflow.services.deps import get_settings_service, get_storage_service, session_scope
|
|
28
|
+
from langflow.services.storage.utils import build_content_type_from_extension
|
|
29
29
|
|
|
30
30
|
T = TypeVar("T")
|
|
31
31
|
P = ParamSpec("P")
|
|
@@ -2104,11 +2104,11 @@
|
|
|
2104
2104
|
},
|
|
2105
2105
|
{
|
|
2106
2106
|
"name": "langchain_astradb",
|
|
2107
|
-
"version": "0.6.
|
|
2107
|
+
"version": "0.6.0"
|
|
2108
2108
|
},
|
|
2109
2109
|
{
|
|
2110
2110
|
"name": "langchain_core",
|
|
2111
|
-
"version": "0.3.
|
|
2111
|
+
"version": "0.3.75"
|
|
2112
2112
|
},
|
|
2113
2113
|
{
|
|
2114
2114
|
"name": "lfx",
|
|
@@ -769,7 +769,7 @@
|
|
|
769
769
|
"dependencies": [
|
|
770
770
|
{
|
|
771
771
|
"name": "langchain_core",
|
|
772
|
-
"version": "0.3.
|
|
772
|
+
"version": "0.3.75"
|
|
773
773
|
},
|
|
774
774
|
{
|
|
775
775
|
"name": "pydantic",
|
|
@@ -2389,7 +2389,7 @@
|
|
|
2389
2389
|
"dependencies": [
|
|
2390
2390
|
{
|
|
2391
2391
|
"name": "langchain_core",
|
|
2392
|
-
"version": "0.3.
|
|
2392
|
+
"version": "0.3.75"
|
|
2393
2393
|
},
|
|
2394
2394
|
{
|
|
2395
2395
|
"name": "lfx",
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
"dependencies": [
|
|
363
363
|
{
|
|
364
364
|
"name": "langchain_core",
|
|
365
|
-
"version": "0.3.
|
|
365
|
+
"version": "0.3.75"
|
|
366
366
|
},
|
|
367
367
|
{
|
|
368
368
|
"name": "pydantic",
|
|
@@ -1005,7 +1005,7 @@
|
|
|
1005
1005
|
"dependencies": [
|
|
1006
1006
|
{
|
|
1007
1007
|
"name": "langchain_core",
|
|
1008
|
-
"version": "0.3.
|
|
1008
|
+
"version": "0.3.75"
|
|
1009
1009
|
},
|
|
1010
1010
|
{
|
|
1011
1011
|
"name": "pydantic",
|
|
@@ -2396,7 +2396,7 @@
|
|
|
2396
2396
|
"dependencies": [
|
|
2397
2397
|
{
|
|
2398
2398
|
"name": "langchain_core",
|
|
2399
|
-
"version": "0.3.
|
|
2399
|
+
"version": "0.3.75"
|
|
2400
2400
|
},
|
|
2401
2401
|
{
|
|
2402
2402
|
"name": "pydantic",
|
|
@@ -3028,7 +3028,7 @@
|
|
|
3028
3028
|
},
|
|
3029
3029
|
{
|
|
3030
3030
|
"name": "langchain_core",
|
|
3031
|
-
"version": "0.3.
|
|
3031
|
+
"version": "0.3.75"
|
|
3032
3032
|
},
|
|
3033
3033
|
{
|
|
3034
3034
|
"name": "pydantic",
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
},
|
|
158
158
|
{
|
|
159
159
|
"name": "langchain_core",
|
|
160
|
-
"version": "0.3.
|
|
160
|
+
"version": "0.3.75"
|
|
161
161
|
},
|
|
162
162
|
{
|
|
163
163
|
"name": "pydantic",
|
|
@@ -388,7 +388,7 @@
|
|
|
388
388
|
},
|
|
389
389
|
{
|
|
390
390
|
"name": "langchain_core",
|
|
391
|
-
"version": "0.3.
|
|
391
|
+
"version": "0.3.75"
|
|
392
392
|
},
|
|
393
393
|
{
|
|
394
394
|
"name": "pydantic",
|
|
@@ -1247,7 +1247,7 @@
|
|
|
1247
1247
|
"dependencies": [
|
|
1248
1248
|
{
|
|
1249
1249
|
"name": "langchain_core",
|
|
1250
|
-
"version": "0.3.
|
|
1250
|
+
"version": "0.3.75"
|
|
1251
1251
|
},
|
|
1252
1252
|
{
|
|
1253
1253
|
"name": "pydantic",
|
|
@@ -1622,7 +1622,7 @@
|
|
|
1622
1622
|
"dependencies": [
|
|
1623
1623
|
{
|
|
1624
1624
|
"name": "langchain_core",
|
|
1625
|
-
"version": "0.3.
|
|
1625
|
+
"version": "0.3.75"
|
|
1626
1626
|
},
|
|
1627
1627
|
{
|
|
1628
1628
|
"name": "pydantic",
|
|
@@ -2258,7 +2258,7 @@
|
|
|
2258
2258
|
"dependencies": [
|
|
2259
2259
|
{
|
|
2260
2260
|
"name": "langchain_core",
|
|
2261
|
-
"version": "0.3.
|
|
2261
|
+
"version": "0.3.75"
|
|
2262
2262
|
},
|
|
2263
2263
|
{
|
|
2264
2264
|
"name": "pydantic",
|
|
@@ -2894,7 +2894,7 @@
|
|
|
2894
2894
|
"dependencies": [
|
|
2895
2895
|
{
|
|
2896
2896
|
"name": "langchain_core",
|
|
2897
|
-
"version": "0.3.
|
|
2897
|
+
"version": "0.3.75"
|
|
2898
2898
|
},
|
|
2899
2899
|
{
|
|
2900
2900
|
"name": "pydantic",
|
|
@@ -3379,11 +3379,11 @@
|
|
|
3379
3379
|
},
|
|
3380
3380
|
{
|
|
3381
3381
|
"name": "langchain_astradb",
|
|
3382
|
-
"version": "0.6.
|
|
3382
|
+
"version": "0.6.0"
|
|
3383
3383
|
},
|
|
3384
3384
|
{
|
|
3385
3385
|
"name": "langchain_core",
|
|
3386
|
-
"version": "0.3.
|
|
3386
|
+
"version": "0.3.75"
|
|
3387
3387
|
},
|
|
3388
3388
|
{
|
|
3389
3389
|
"name": "lfx",
|
|
@@ -4185,11 +4185,11 @@
|
|
|
4185
4185
|
},
|
|
4186
4186
|
{
|
|
4187
4187
|
"name": "langchain_astradb",
|
|
4188
|
-
"version": "0.6.
|
|
4188
|
+
"version": "0.6.0"
|
|
4189
4189
|
},
|
|
4190
4190
|
{
|
|
4191
4191
|
"name": "langchain_core",
|
|
4192
|
-
"version": "0.3.
|
|
4192
|
+
"version": "0.3.75"
|
|
4193
4193
|
},
|
|
4194
4194
|
{
|
|
4195
4195
|
"name": "lfx",
|
|
@@ -298,7 +298,7 @@
|
|
|
298
298
|
},
|
|
299
299
|
{
|
|
300
300
|
"name": "langchain_core",
|
|
301
|
-
"version": "0.3.
|
|
301
|
+
"version": "0.3.75"
|
|
302
302
|
}
|
|
303
303
|
],
|
|
304
304
|
"total_dependencies": 3
|
|
@@ -764,7 +764,7 @@
|
|
|
764
764
|
"dependencies": [
|
|
765
765
|
{
|
|
766
766
|
"name": "langchain_core",
|
|
767
|
-
"version": "0.3.
|
|
767
|
+
"version": "0.3.75"
|
|
768
768
|
},
|
|
769
769
|
{
|
|
770
770
|
"name": "pydantic",
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
EXTENSION_TO_CONTENT_TYPE = {
|
|
2
|
+
"json": "application/json",
|
|
3
|
+
"txt": "text/plain",
|
|
4
|
+
"csv": "text/csv",
|
|
5
|
+
"html": "text/html",
|
|
6
|
+
"pdf": "application/pdf",
|
|
7
|
+
"png": "image/png",
|
|
8
|
+
"jpg": "image/jpeg",
|
|
9
|
+
"jpeg": "image/jpeg",
|
|
10
|
+
"gif": "image/gif",
|
|
11
|
+
"svg": "image/svg+xml",
|
|
12
|
+
"mp3": "audio/mpeg",
|
|
13
|
+
"wav": "audio/wav",
|
|
14
|
+
"mp4": "video/mp4",
|
|
15
|
+
"webm": "video/webm",
|
|
16
|
+
"zip": "application/zip",
|
|
17
|
+
"tar": "application/x-tar",
|
|
18
|
+
"gz": "application/gzip",
|
|
19
|
+
"doc": "application/msword",
|
|
20
|
+
"docx": "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
21
|
+
"xls": "application/vnd.ms-excel",
|
|
22
|
+
"xlsx": "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet",
|
|
23
|
+
"ppt": "application/vnd.ms-powerpoint",
|
|
24
|
+
"pptx": "application/vnd.openxmlformats-officedocument.presentationml.presentation",
|
|
25
|
+
"xml": "application/xml",
|
|
26
|
+
"yaml": "application/x-yaml",
|
|
27
|
+
"yml": "application/x-yaml",
|
|
28
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
from
|
|
1
|
+
from langflow.services.storage.constants import EXTENSION_TO_CONTENT_TYPE
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
|
|
4
|
+
def build_content_type_from_extension(extension: str):
|
|
5
|
+
return EXTENSION_TO_CONTENT_TYPE.get(extension.lower(), "application/octet-stream")
|
{langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: langflow-base-nightly
|
|
3
|
-
Version: 0.5.1.
|
|
3
|
+
Version: 0.5.1.dev41
|
|
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
|
|
@@ -45,7 +45,7 @@ Requires-Dist: langchain-experimental<1.0.0,>=0.3.4
|
|
|
45
45
|
Requires-Dist: langchain-ibm>=0.3.8
|
|
46
46
|
Requires-Dist: langchainhub~=0.1.15
|
|
47
47
|
Requires-Dist: langchain~=0.3.21
|
|
48
|
-
Requires-Dist: lfx-nightly==0.1.12.
|
|
48
|
+
Requires-Dist: lfx-nightly==0.1.12.dev23
|
|
49
49
|
Requires-Dist: loguru<1.0.0,>=0.7.1
|
|
50
50
|
Requires-Dist: mcp~=1.10.1
|
|
51
51
|
Requires-Dist: multiprocess<1.0.0,>=0.70.14
|
{langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/RECORD
RENAMED
|
@@ -79,14 +79,14 @@ langflow/api/v1/base.py,sha256=a1FhhrISV47KjGXDFJSmnp4-fBc16in5BLRWmCMIHpw,1286
|
|
|
79
79
|
langflow/api/v1/callback.py,sha256=dblxXadLQrV-afWnmZwXX_s0zOtnvvWU9LLgT1IYOho,4787
|
|
80
80
|
langflow/api/v1/chat.py,sha256=7RAD8nmqJyWpftvXrHdUpxajKJ2D4vhnDjVnqKLKShk,25202
|
|
81
81
|
langflow/api/v1/endpoints.py,sha256=r5DmeHRDnJnroKGpqxF1efWM9ooJTLbMdN4wam0QbFw,30935
|
|
82
|
-
langflow/api/v1/files.py,sha256=
|
|
82
|
+
langflow/api/v1/files.py,sha256=V0fW6IBBYLZo0zoUS5y0lTRsR5hs5NSlN0OyfFgXNDc,7661
|
|
83
83
|
langflow/api/v1/flows.py,sha256=Uj0URyAB9Z22ZKSgpGumIJmjsYrrTT1Uy599Ag41trk,21425
|
|
84
84
|
langflow/api/v1/folders.py,sha256=uk8O2w-8d0jGb8TIJEz3mO09Ib1yTzGhmyW54MKdpqA,3286
|
|
85
85
|
langflow/api/v1/knowledge_bases.py,sha256=WkKyivY54jXIVNvqOxdSIiJ2KpHWCMBoScv66eCi7ZM,16893
|
|
86
86
|
langflow/api/v1/login.py,sha256=zxfGEXaYHebFk-pYP9xcp_aUbVt8qUOik3W4O_u8IRc,5826
|
|
87
87
|
langflow/api/v1/mcp.py,sha256=jbTllucL8okLDuugCOCyw7Ig5CVtmzps93T5hAKIQ5U,4767
|
|
88
88
|
langflow/api/v1/mcp_projects.py,sha256=MxHNSSoX1gERMSEnGLZkHbtpA6AsdOUbkihyY_GoTmA,54031
|
|
89
|
-
langflow/api/v1/mcp_utils.py,sha256=
|
|
89
|
+
langflow/api/v1/mcp_utils.py,sha256=Cz-bqwH2NeBuVrQRuktkA309E49Cqri5HHmxPSjcyzg,14273
|
|
90
90
|
langflow/api/v1/monitor.py,sha256=2vMUdIdzbIaFdyVvr5RrXQvNQqLNLcHnlGwzdkqkiI4,7567
|
|
91
91
|
langflow/api/v1/openai_responses.py,sha256=d__52UBUVmAthSY2BYWYEQk5inSO6VYqvXeE7silJJ0,26643
|
|
92
92
|
langflow/api/v1/projects.py,sha256=KDjjOvcxbxaRWr9W8iNcFRceJUehn0w56Hs0Go5FVAI,17929
|
|
@@ -1975,33 +1975,33 @@ langflow/initial_setup/starter_projects/Blog Writer.json,sha256=A8cyALEA9GsJbB7G
|
|
|
1975
1975
|
langflow/initial_setup/starter_projects/Custom Component Generator.json,sha256=R8Ndg-aT6gP3vsxV4qjy94iXHAWE_yD7pkeboOuqS08,162486
|
|
1976
1976
|
langflow/initial_setup/starter_projects/Document Q&A.json,sha256=rD05ANcoLVTCLA0UQ92HK4CRJJqU-bu72Ex2awWb9uE,101927
|
|
1977
1977
|
langflow/initial_setup/starter_projects/Financial Report Parser.json,sha256=z4N9Ze6wA60Bt5qdTVIWRld8l2qgk1cxpUjRA0hIYkY,85284
|
|
1978
|
-
langflow/initial_setup/starter_projects/Hybrid Search RAG.json,sha256=
|
|
1978
|
+
langflow/initial_setup/starter_projects/Hybrid Search RAG.json,sha256=N6fncptwFlQlToux135N1WHTH-IUlmLtGzYP_KhoS7s,203269
|
|
1979
1979
|
langflow/initial_setup/starter_projects/Image Sentiment Analysis.json,sha256=oGGRV6mCbFs2KAu8sy2_btVcfC7LwHoWsXCiWOcpR94,110495
|
|
1980
|
-
langflow/initial_setup/starter_projects/Instagram Copywriter.json,sha256=
|
|
1981
|
-
langflow/initial_setup/starter_projects/Invoice Summarizer.json,sha256=
|
|
1982
|
-
langflow/initial_setup/starter_projects/Knowledge Ingestion.json,sha256=
|
|
1983
|
-
langflow/initial_setup/starter_projects/Knowledge Retrieval.json,sha256=
|
|
1984
|
-
langflow/initial_setup/starter_projects/Market Research.json,sha256=
|
|
1980
|
+
langflow/initial_setup/starter_projects/Instagram Copywriter.json,sha256=otO-Ks45-L8o8kRR5CCiE2DHQULQGvr1tFPEHpeQSpc,182455
|
|
1981
|
+
langflow/initial_setup/starter_projects/Invoice Summarizer.json,sha256=C5nFgCh_xCmQoeCH3YzkgsLQwC9aJejki9SubenvF7g,106001
|
|
1982
|
+
langflow/initial_setup/starter_projects/Knowledge Ingestion.json,sha256=X5JLkL65L9aXnKINLJ4g6GAHWRsZnIJnFtXgBC-6oMs,87633
|
|
1983
|
+
langflow/initial_setup/starter_projects/Knowledge Retrieval.json,sha256=IoNdmPww4YBkJ9P4aR0hhX__Og9CxoFrlutPyWszfWc,43239
|
|
1984
|
+
langflow/initial_setup/starter_projects/Market Research.json,sha256=EaxIEkpcNR8Mr42rR6vQqB_c5RFDillUYZCPInFjFEg,163518
|
|
1985
1985
|
langflow/initial_setup/starter_projects/Meeting Summary.json,sha256=wesDUtASahjSRf1Kiuze3XdjH1lS5Io5jWUpVrIcA-o,187800
|
|
1986
1986
|
langflow/initial_setup/starter_projects/Memory Chatbot.json,sha256=BZTja8NfbToSFj_HR61_XHwz8WQrRl53AuN_Jdjz8z8,80861
|
|
1987
|
-
langflow/initial_setup/starter_projects/News Aggregator.json,sha256=
|
|
1988
|
-
langflow/initial_setup/starter_projects/Nvidia Remix.json,sha256=
|
|
1989
|
-
langflow/initial_setup/starter_projects/Pokédex Agent.json,sha256=
|
|
1987
|
+
langflow/initial_setup/starter_projects/News Aggregator.json,sha256=4pMBIOW5GLBfCBmt7n0WhyHWh63bb86DQKALBjRNZvM,125067
|
|
1988
|
+
langflow/initial_setup/starter_projects/Nvidia Remix.json,sha256=RcsvupQWUQXHuzUiJg0hO9bvyPnxhB_XBAeAGjEgbrA,324720
|
|
1989
|
+
langflow/initial_setup/starter_projects/Pokédex Agent.json,sha256=LRVTeaqUx0s1bs0kkLGQ2dPvODj92XYLRbPFL3jOVL4,122943
|
|
1990
1990
|
langflow/initial_setup/starter_projects/Portfolio Website Code Generator.json,sha256=_DWit1PZCW47vSiDhY328fAld2nouhwU7Kyinbb1gUc,151393
|
|
1991
|
-
langflow/initial_setup/starter_projects/Price Deal Finder.json,sha256=
|
|
1992
|
-
langflow/initial_setup/starter_projects/Research Agent.json,sha256=
|
|
1991
|
+
langflow/initial_setup/starter_projects/Price Deal Finder.json,sha256=NsRFa0PzcaNmYygEqqhck5VpBQY0uN3GR7_YPdm8aJs,133251
|
|
1992
|
+
langflow/initial_setup/starter_projects/Research Agent.json,sha256=x33anVjBB3G1mdQdI3ZIdIz-uXJNeWACeHytkmL2oRI,181580
|
|
1993
1993
|
langflow/initial_setup/starter_projects/Research Translation Loop.json,sha256=Y4MiD4_fWnX_6TiwYi5e7qPcTjLkRqs4BMInn4whYWE,101416
|
|
1994
1994
|
langflow/initial_setup/starter_projects/SEO Keyword Generator.json,sha256=1zRYWUGLBJ8BqOKpfDJOpFxg8W8qdFb0Jlz3hnUgChY,62504
|
|
1995
|
-
langflow/initial_setup/starter_projects/SaaS Pricing.json,sha256=
|
|
1996
|
-
langflow/initial_setup/starter_projects/Search agent.json,sha256=
|
|
1997
|
-
langflow/initial_setup/starter_projects/Sequential Tasks Agents.json,sha256=
|
|
1998
|
-
langflow/initial_setup/starter_projects/Simple Agent.json,sha256=
|
|
1999
|
-
langflow/initial_setup/starter_projects/Social Media Agent.json,sha256=
|
|
1995
|
+
langflow/initial_setup/starter_projects/SaaS Pricing.json,sha256=2AQXJlxJvgZrTbhmtau8dZbWNIjE0JvLL-A-jp3LUFE,96093
|
|
1996
|
+
langflow/initial_setup/starter_projects/Search agent.json,sha256=9i9tzn_qf4J94gDXWyqWi2_C5uXeM706Yjezj07jkrY,93425
|
|
1997
|
+
langflow/initial_setup/starter_projects/Sequential Tasks Agents.json,sha256=r6goPWypPtpv2jLPgYiY3gV-w6VAk5oYUUeSRaGVt6A,278098
|
|
1998
|
+
langflow/initial_setup/starter_projects/Simple Agent.json,sha256=3t2_LO4SsERZrMuUCO6ho1sQDjFjY-45Qq9e86YKLtI,121771
|
|
1999
|
+
langflow/initial_setup/starter_projects/Social Media Agent.json,sha256=TJ-UB4_N74p62Cho4zkKfa--KUGfC6YKH-KwrMtT38A,131232
|
|
2000
2000
|
langflow/initial_setup/starter_projects/Text Sentiment Analysis.json,sha256=9LFJawnTBQ9WPJOexZDb_1zAzsj9vsn90eCSD083q18,168474
|
|
2001
|
-
langflow/initial_setup/starter_projects/Travel Planning Agents.json,sha256=
|
|
2001
|
+
langflow/initial_setup/starter_projects/Travel Planning Agents.json,sha256=M60qDcO84Dvp6zabN_w47aqfiN08Ose_EhuoWooCT04,240497
|
|
2002
2002
|
langflow/initial_setup/starter_projects/Twitter Thread Generator.json,sha256=ybLVgJwWS5UHkNk9Y4uYWtDZO3OggBMWaNypZPkP39A,99683
|
|
2003
|
-
langflow/initial_setup/starter_projects/Vector Store RAG.json,sha256=
|
|
2004
|
-
langflow/initial_setup/starter_projects/Youtube Analysis.json,sha256=
|
|
2003
|
+
langflow/initial_setup/starter_projects/Vector Store RAG.json,sha256=7mq8pePNjGvZ-fMXOFBC07yFmaszKFTxjFJvoNQooIo,359622
|
|
2004
|
+
langflow/initial_setup/starter_projects/Youtube Analysis.json,sha256=QcEgP_FrYBP4E10StSemgVxJtK08Hu_S0AIlwukdzV0,180016
|
|
2005
2005
|
langflow/initial_setup/starter_projects/__init__.py,sha256=c5Z92jvCm680uhVKycyps-BX-lEHjjPKWcsI86METUA,673
|
|
2006
2006
|
langflow/initial_setup/starter_projects/basic_prompting.py,sha256=Lw7anZebWGcypu6S1QM4Zmi7ztk14TJvuPSEC2QjTyo,837
|
|
2007
2007
|
langflow/initial_setup/starter_projects/blog_writer.py,sha256=zfLn_b9NJ9K5jWLdYYXEKHIGg0KXEWRvWPlj5hE-nPo,1432
|
|
@@ -2139,11 +2139,12 @@ langflow/services/state/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
2139
2139
|
langflow/services/state/factory.py,sha256=7YDi52LZ427X6Hz1CpfKN65I469jjWTxGb5rv91HLp8,489
|
|
2140
2140
|
langflow/services/state/service.py,sha256=XiB_Wkza1oJGV8spHOorqPomrHhDt0CgcrCiUhWGJd4,3020
|
|
2141
2141
|
langflow/services/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2142
|
+
langflow/services/storage/constants.py,sha256=tcuVjsxjZlbdgQxbJMPZ7efOau_hgpICCybOzLcdFx4,955
|
|
2142
2143
|
langflow/services/storage/factory.py,sha256=RLzRd7Ow1Wd2HnJxH-6j7IGn2_dQ1rmUVSFA5mJeqKI,1154
|
|
2143
2144
|
langflow/services/storage/local.py,sha256=jU2TALx316HNSz6PWy1PRdTjr9zTLv5dbr0Bt6bbQT0,4863
|
|
2144
2145
|
langflow/services/storage/s3.py,sha256=prW6pS7YjSk4O_PAMQF7ryH5W8OSeY4GN5OvTjBmBJk,3996
|
|
2145
2146
|
langflow/services/storage/service.py,sha256=PhHCHQ8KzOiJ5Z0NuBRO1wWgI5O32-qO-gzpRYMg1AY,1516
|
|
2146
|
-
langflow/services/storage/utils.py,sha256=
|
|
2147
|
+
langflow/services/storage/utils.py,sha256=_c2Azl0wQJzF0OGoRMVeb6seW2ECvEjbcPtnAy0pRi0,219
|
|
2147
2148
|
langflow/services/store/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2148
2149
|
langflow/services/store/exceptions.py,sha256=bPHFnF6SaM-BhGxVzYaEQXMaiUJyE1SjSEUYeHnWKlU,739
|
|
2149
2150
|
langflow/services/store/factory.py,sha256=d5kTURS8vTGk6ukwskZTMJ7ef6We6e6-X1PiKK9TUXw,535
|
|
@@ -2206,7 +2207,7 @@ langflow/utils/util.py,sha256=_jb0L7bh5Chs6oCY9QxsiwTY70xHi-pRuCgkxKhUrhw,1462
|
|
|
2206
2207
|
langflow/utils/validate.py,sha256=BPqoIMvjl4wbMJTTWo1zMHP0kQCa2TfmDT9f-nPT9Ng,112
|
|
2207
2208
|
langflow/utils/version.py,sha256=OjSj0smls9XnPd4-LpTH9AWyUO_NAn5mncqKkkXl_fw,2840
|
|
2208
2209
|
langflow/utils/voice_utils.py,sha256=Ypxg8s5jFd1o5wBbx1W8oKK7vh4kwo0-iuTcFqIwy5I,3350
|
|
2209
|
-
langflow_base_nightly-0.5.1.
|
|
2210
|
-
langflow_base_nightly-0.5.1.
|
|
2211
|
-
langflow_base_nightly-0.5.1.
|
|
2212
|
-
langflow_base_nightly-0.5.1.
|
|
2210
|
+
langflow_base_nightly-0.5.1.dev41.dist-info/METADATA,sha256=K-VsjEb09nB5VVGJ8MOK94HiH8MDpMET1XIhDdrE8a4,4286
|
|
2211
|
+
langflow_base_nightly-0.5.1.dev41.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
2212
|
+
langflow_base_nightly-0.5.1.dev41.dist-info/entry_points.txt,sha256=JvuLdXSrkeDmDdpb8M-VvFIzb84n4HmqUcIP10_EIF8,57
|
|
2213
|
+
langflow_base_nightly-0.5.1.dev41.dist-info/RECORD,,
|
{langflow_base_nightly-0.5.1.dev40.dist-info → langflow_base_nightly-0.5.1.dev41.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|