lfx-nightly 0.1.12.dev40__py3-none-any.whl → 0.1.12.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.

Potentially problematic release.


This version of lfx-nightly might be problematic. Click here for more details.

@@ -9,6 +9,7 @@ class AstraDBChatMemory(LCChatMemoryComponent):
9
9
  display_name = "Astra DB Chat Memory"
10
10
  description = "Retrieves and store chat messages from Astra DB."
11
11
  name = "AstraDBChatMemory"
12
+ documentation: str = "https://docs.langflow.org/bundles-datastax#astra-db-chat-memory"
12
13
  icon: str = "AstraDB"
13
14
 
14
15
  inputs = [
@@ -18,7 +18,7 @@ from lfx.schema.table import EditMode
18
18
  class AstraDBCQLToolComponent(LCToolComponent):
19
19
  display_name: str = "Astra DB CQL"
20
20
  description: str = "Create a tool to get transactional data from DataStax Astra DB CQL Table"
21
- documentation: str = "https://docs.langflow.org/Components/components-tools#astra-db-cql-tool"
21
+ documentation: str = "https://docs.langflow.org/bundles-datastax#astra-db-cql"
22
22
  icon: str = "AstraDB"
23
23
 
24
24
  inputs = [
@@ -21,6 +21,7 @@ class AstraDBGraphVectorStoreComponent(LCVectorStoreComponent):
21
21
  display_name: str = "Astra DB Graph"
22
22
  description: str = "Implementation of Graph Vector Store using Astra DB"
23
23
  name = "AstraDBGraph"
24
+ documentation: str = "https://docs.langflow.org/bundles-datastax#astra-db-graph"
24
25
  icon: str = "AstraDB"
25
26
 
26
27
  inputs = [
@@ -16,7 +16,7 @@ from lfx.schema.table import EditMode
16
16
  class AstraDBToolComponent(LCToolComponent):
17
17
  display_name: str = "Astra DB Tool"
18
18
  description: str = "Tool to run hybrid vector and metadata search on DataStax Astra DB Collection"
19
- documentation: str = "https://docs.langflow.org/components-bundle-components"
19
+ documentation: str = "https://docs.langflow.org/bundles-datastax#astra-db-tool"
20
20
  icon: str = "AstraDB"
21
21
 
22
22
  inputs = [
@@ -31,7 +31,7 @@ from lfx.utils.version import get_version_info
31
31
  class AstraDBVectorStoreComponent(LCVectorStoreComponent):
32
32
  display_name: str = "Astra DB"
33
33
  description: str = "Ingest and search documents in Astra DB"
34
- documentation: str = "https://docs.datastax.com/en/langflow/astra-components.html"
34
+ documentation: str = "https://docs.langflow.org/bundles-datastax#astra-db"
35
35
  name = "AstraDB"
36
36
  icon: str = "AstraDB"
37
37
 
@@ -17,6 +17,7 @@ class HCDVectorStoreComponent(LCVectorStoreComponent):
17
17
  display_name: str = "Hyper-Converged Database"
18
18
  description: str = "Implementation of Vector Store using Hyper-Converged Database (HCD) with search capabilities"
19
19
  name = "HCD"
20
+ documentation: str = "https://docs.langflow.org/bundles-datastax#hyper-converged-database-hcd"
20
21
  icon: str = "HCD"
21
22
 
22
23
  inputs = [
@@ -4,6 +4,7 @@ import requests
4
4
  from pydantic.v1 import SecretStr
5
5
 
6
6
  from lfx.base.models.google_generative_ai_constants import GOOGLE_GENERATIVE_AI_MODELS
7
+ from lfx.base.models.google_generative_ai_model import ChatGoogleGenerativeAIFixed
7
8
  from lfx.base.models.model import LCModelComponent
8
9
  from lfx.field_typing import LanguageModel
9
10
  from lfx.field_typing.range_spec import RangeSpec
@@ -74,12 +75,6 @@ class GoogleGenerativeAIComponent(LCModelComponent):
74
75
  ]
75
76
 
76
77
  def build_model(self) -> LanguageModel: # type: ignore[type-var]
77
- try:
78
- from langchain_google_genai import ChatGoogleGenerativeAI
79
- except ImportError as e:
80
- msg = "The 'langchain_google_genai' package is required to use the Google Generative AI model."
81
- raise ImportError(msg) from e
82
-
83
78
  google_api_key = self.api_key
84
79
  model = self.model_name
85
80
  max_output_tokens = self.max_output_tokens
@@ -88,7 +83,9 @@ class GoogleGenerativeAIComponent(LCModelComponent):
88
83
  top_p = self.top_p
89
84
  n = self.n
90
85
 
91
- return ChatGoogleGenerativeAI(
86
+ # Use modified ChatGoogleGenerativeAIFixed class for multiple function support
87
+ # TODO: Potentially remove when fixed upstream
88
+ return ChatGoogleGenerativeAIFixed(
92
89
  model=model,
93
90
  max_output_tokens=max_output_tokens or None,
94
91
  temperature=temperature,
@@ -1,11 +1,11 @@
1
1
  from typing import Any
2
2
 
3
3
  from langchain_anthropic import ChatAnthropic
4
- from langchain_google_genai import ChatGoogleGenerativeAI
5
4
  from langchain_openai import ChatOpenAI
6
5
 
7
6
  from lfx.base.models.anthropic_constants import ANTHROPIC_MODELS
8
7
  from lfx.base.models.google_generative_ai_constants import GOOGLE_GENERATIVE_AI_MODELS
8
+ from lfx.base.models.google_generative_ai_model import ChatGoogleGenerativeAIFixed
9
9
  from lfx.base.models.model import LCModelComponent
10
10
  from lfx.base.models.openai_constants import OPENAI_CHAT_MODEL_NAMES, OPENAI_REASONING_MODEL_NAMES
11
11
  from lfx.field_typing import LanguageModel
@@ -112,7 +112,7 @@ class LanguageModelComponent(LCModelComponent):
112
112
  if not self.api_key:
113
113
  msg = "Google API key is required when using Google provider"
114
114
  raise ValueError(msg)
115
- return ChatGoogleGenerativeAI(
115
+ return ChatGoogleGenerativeAIFixed(
116
116
  model=model_name,
117
117
  temperature=temperature,
118
118
  streaming=stream,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lfx-nightly
3
- Version: 0.1.12.dev40
3
+ Version: 0.1.12.dev41
4
4
  Summary: Langflow Executor - A lightweight CLI tool for executing and serving Langflow AI flows
5
5
  Author-email: Gabriel Luiz Freitas Almeida <gabriel@langflow.org>
6
6
  Requires-Python: <3.14,>=3.10
@@ -4,7 +4,7 @@ lfx/constants.py,sha256=Ert_SpwXhutgcTKEvtDArtkONXgyE5x68opMoQfukMA,203
4
4
  lfx/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  lfx/settings.py,sha256=wnx4zkOLQ8mvampYsnnvVV9GvEnRUuWQpKFSbFTCIp4,181
6
6
  lfx/type_extraction.py,sha256=eCZNl9nAQivKdaPv_9BK71N0JV9Rtr--veAht0dnQ4A,2921
7
- lfx/_assets/component_index.json,sha256=fxtpy4FgxLQswo9s5ftwTTVC6uwyz1yA30EHKpS8VsA,3502133
7
+ lfx/_assets/component_index.json,sha256=y4N7fkmU7ashl8Xwy7vz8Eb68MdF6r0rWSFLy2hNiTs,3894751
8
8
  lfx/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  lfx/base/constants.py,sha256=v9vo0Ifg8RxDu__XqgGzIXHlsnUFyWM-SSux0uHHoz8,1187
10
10
  lfx/base/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -23,7 +23,7 @@ lfx/base/astra_assistants/util.py,sha256=T_W44VFoOXBF3m-0eCSrHvzbKx1gdyBF9IAWKMX
23
23
  lfx/base/chains/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
24
  lfx/base/chains/model.py,sha256=QSYJBc0Ygpx2Ko273u1idL_gPK2xpvRQgJb4oTx8x8s,766
25
25
  lfx/base/composio/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
- lfx/base/composio/composio_base.py,sha256=pltCXF0eQVfGbetksE2sXMTPMji8lR1jSryeMNrYNZM,115607
26
+ lfx/base/composio/composio_base.py,sha256=AJBitxwJAirGm000njuLBdD_uBHKbcPvfHDyXuJdViY,131914
27
27
  lfx/base/compressors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
28
  lfx/base/compressors/model.py,sha256=-FFBAPAy9bAgvklIo7x_uwShZR5NoMHakF6f_hNnLHg,2098
29
29
  lfx/base/curl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -63,6 +63,7 @@ lfx/base/models/anthropic_constants.py,sha256=51_fghjdfBRyLSNj3qa-ogyWmeP518Hrds
63
63
  lfx/base/models/aws_constants.py,sha256=-Fa7T3wJqBaZhs80ATRgZP6yZ0Nsd1YYdZv9SfqT-Hs,6327
64
64
  lfx/base/models/chat_result.py,sha256=-MypS6_GKXOqWevtk0xwtrsEO4mIgpPAt7-EML5n0vA,2756
65
65
  lfx/base/models/google_generative_ai_constants.py,sha256=EuFd77ZrrSr6YtSKtmEaq0Nfa4y45AbDe_cz_18nReE,2564
66
+ lfx/base/models/google_generative_ai_model.py,sha256=wEIyBkTZcZD3akUiAKTGxazTJnOQeh80WHMKiHdK1wo,1839
66
67
  lfx/base/models/groq_constants.py,sha256=WOMpYRwJVrZavsi7zGJwRHJX8ZBvdtILUOmBFv0QIPQ,5536
67
68
  lfx/base/models/model.py,sha256=nJgExAvMJ5WMxCqC__Jc1GdkgJag4yrwC9nFtPEVupM,15324
68
69
  lfx/base/models/model_input_constants.py,sha256=WrnkAmMTk4cMjjLgBzRffJDzow7LWRpfc5GsgdRxvU4,10748
@@ -110,8 +111,9 @@ lfx/components/Notion/search.py,sha256=WEDYbNotXdlgTXrmRtpZ9_proiOJl1zouNPRpFllg
110
111
  lfx/components/Notion/update_page_property.py,sha256=tgmPMbD1eX58dQQNXv1w5FzDec7QwFiBuOqh4RazoJ0,4541
111
112
  lfx/components/agentql/__init__.py,sha256=Erl669Dzsk-SegsDPWTtkKbprMXVuv8UTCo5REzZGTc,56
112
113
  lfx/components/agentql/agentql_api.py,sha256=N94yEK7ZuQCIsFBlr_8dqrJY-K1-KNb6QEEYfDIsDME,5569
113
- lfx/components/agents/__init__.py,sha256=u1PH9Ui0dUgTdTZVP7cdVysCv4extdusKS_brcbE7Eg,1049
114
+ lfx/components/agents/__init__.py,sha256=UBu5kO9hp8yFyxTU-u9KHN9zTSoHhJSYdKtRuT5ig9c,1164
114
115
  lfx/components/agents/agent.py,sha256=cv8CqEvLKpTsR9YAg09rqjxEXbW0_GzW8oUxeWc4pHY,26681
116
+ lfx/components/agents/cuga_agent.py,sha256=ynMAF96ANB9qxGck92urkFmqmAeJRUgc6dKulpuaeTM,43518
115
117
  lfx/components/agents/mcp_component.py,sha256=mE2HvbHcdkuWWylxmaNNZobbtgBRktOOakeGwUYs7Qs,25586
116
118
  lfx/components/aiml/__init__.py,sha256=DNKB-HMFGFYmsdkON-s8557ttgBXVXADmS-BcuSQiIQ,1087
117
119
  lfx/components/aiml/aiml.py,sha256=23Ineg1ajlCoqXgWgp50I20OnQbaleRNsw1c6IzPu3A,3877
@@ -236,12 +238,12 @@ lfx/components/data/web_search.py,sha256=48SCp-2I_Qckp5tmTVC9JBw2C-MhBDF14MJLaGj
236
238
  lfx/components/data/webhook.py,sha256=i2jdXSLUVA0UpnYBZzdPo035MeiUcFKVJy37EhLKq6o,1643
237
239
  lfx/components/datastax/__init__.py,sha256=VEh_Qu8dYPOVB9dISRaxheFPKxzQoNNe1DCwTWTGNIU,2415
238
240
  lfx/components/datastax/astra_assistant_manager.py,sha256=5vLbuCxSz04GKxEpP0TNm9K_RAxxoMTz-Mt_YhkyfH0,11557
239
- lfx/components/datastax/astra_db.py,sha256=kbn61B_08mu7_uzf3shJKJjmtPt2y_WzvrxsHCVDX8Y,2697
241
+ lfx/components/datastax/astra_db.py,sha256=i5LL87sirODcFEugJVjs0PPgk-9yCyz8lwMQFynrqvM,2788
240
242
  lfx/components/datastax/astra_vectorize.py,sha256=PZdmkMJiPAnTankXjFjdG192OeHVetxBfGzbwxgPQ54,4912
241
- lfx/components/datastax/astradb_cql.py,sha256=N83xczQuzSarqoowgIg_B12_Eh4U6YL2X30ckS9Jt5E,11790
242
- lfx/components/datastax/astradb_graph.py,sha256=5rtUexk4IcvRmbzWeSSljfDF6XaeClHWZU1frO47wbo,12758
243
- lfx/components/datastax/astradb_tool.py,sha256=grali1__qDekob3O10JVR5bPLUbJH6U5pI8rMzcXvRI,16742
244
- lfx/components/datastax/astradb_vectorstore.py,sha256=YaGMjKE3BaWz0EHFo5GUfl_PLsFlBgSbswXxnRWRkZ0,53718
243
+ lfx/components/datastax/astradb_cql.py,sha256=pHms51vCfx-h0Vyjhoi0Sr3WLVWww9XEyeuQVZTxy84,11774
244
+ lfx/components/datastax/astradb_graph.py,sha256=Og-9UMxWk3CzEJ2-fGPnfLzik3dzlbIDEKMYvd3ZMM0,12843
245
+ lfx/components/datastax/astradb_tool.py,sha256=5tIrdsxbsZ8NpmxBHww_5_tDnCr-Me5kUtJRxxSQT4Y,16744
246
+ lfx/components/datastax/astradb_vectorstore.py,sha256=K2OnNfuJfEGMwnkLgIzh8gKWMFbDpOVBUntSt9tqPO0,53710
245
247
  lfx/components/datastax/cassandra.py,sha256=9klxgphOLxOPu32cweSt6UJXzFctJxf38v1nGhumpNo,3197
246
248
  lfx/components/datastax/create_assistant.py,sha256=VJ0-XMLq5otLPZNS69X5PhVfUHfEVNnkwYWx2XCLhB4,2106
247
249
  lfx/components/datastax/create_thread.py,sha256=zpFOpUfz_lXhtA4n6B1T0xzIYr0bhpn9SiZDiaaa3gU,1085
@@ -249,7 +251,7 @@ lfx/components/datastax/dotenv.py,sha256=S7m1a5UcJ-hQvOf7-ikeI-V430fSyWxLkN_NOvs
249
251
  lfx/components/datastax/get_assistant.py,sha256=oA5HcSr3riI6xok9c_09IG-FFLUNt3DTjc0PbLUKhxY,1255
250
252
  lfx/components/datastax/getenvvar.py,sha256=rbg3ly45OmQfPnF2SIWp_JduAzH5U1MAXMZjkfeDJpI,947
251
253
  lfx/components/datastax/graph_rag.py,sha256=4NmYQkjSru_zaDhJfxdaYtap-RMGJfv2AYN2NEYSdds,5163
252
- lfx/components/datastax/hcd.py,sha256=Fo7Zj4U-A1ZcbsdhlTxheMJDy8EzbYWlo85iY6vASnQ,12379
254
+ lfx/components/datastax/hcd.py,sha256=fnRp4DvFTHqDlKZD-a0xZBGoPrVvxaZ_vXJXzHzt-ts,12478
253
255
  lfx/components/datastax/list_assistants.py,sha256=W5ROMSBoZdGo4ShB9i6Uzb3lXz-hy9gr0t0N2cgUTPM,928
254
256
  lfx/components/datastax/run.py,sha256=yPP8_5wBsHjo0OyPYGWJ2uvgQGT446ZsoN-DF6DaaU4,3063
255
257
  lfx/components/deactivated/__init__.py,sha256=A94MZ_EW-Ckp2sgDMiXNrptAaUzMbgbkl6yVpBjJXm8,485
@@ -308,7 +310,7 @@ lfx/components/google/gmail.py,sha256=uXPFoZh7c0Lfprif4gShO3AQ6av1KogosXvx6daJgv
308
310
  lfx/components/google/google_bq_sql_executor.py,sha256=f2EVl0PsiceeIKKanyBT3RM5aVQoZyAQ-EfwY3fg4OU,6007
309
311
  lfx/components/google/google_drive.py,sha256=Fyf1F-gU3-UIVWzQ1TLmFMH62FPECK3fWO4OxpK-1SA,3256
310
312
  lfx/components/google/google_drive_search.py,sha256=j4298EqvSGLHrcVvECd3kbr14xmpELbOh7YaDTiXixQ,5906
311
- lfx/components/google/google_generative_ai.py,sha256=68YAmP0I-Mx-P5wBLiqE5d1GnWRvrBRfy8YZuoRpnTg,5865
313
+ lfx/components/google/google_generative_ai.py,sha256=_7bnW2aEbjQBWU43Dzrak1ZENZboxsdTzLeKCufhC3I,5828
312
314
  lfx/components/google/google_generative_ai_embeddings.py,sha256=d1atcKIhyjbpIFaFBBy58Ffn-gOL1r0_x_7UanHGTIs,6537
313
315
  lfx/components/google/google_oauth_token.py,sha256=FRd4VyCZfyYlbzx68o4LyWPW0Zoo3_hilbY-z9PTivk,3075
314
316
  lfx/components/google/google_search_api_core.py,sha256=hTwZOqQcf7qcUHIcD_pPfO6fzkMY6ZjVkexKY6yM4kA,2157
@@ -409,7 +411,7 @@ lfx/components/mistral/mistral.py,sha256=4heAlIFEeq_ljUZDPpNGyK_VRkWjwCfPbBaQK1m
409
411
  lfx/components/mistral/mistral_embeddings.py,sha256=NNBGFIocnWpYehCalxh8Csun-qdHL5J-IzPsFe5Mlv0,1974
410
412
  lfx/components/models/__init__.py,sha256=hhfj70MkcRATzAjJnntAg1A4E7kHlQn8GT0bizkB7L4,1113
411
413
  lfx/components/models/embedding_model.py,sha256=hgfpY_3vc4l1v_qdCHQdJIyJ7UEUr4rbzyXzY0Cyec8,4212
412
- lfx/components/models/language_model.py,sha256=u1-HFHgbPZlNgvE1xAxVT9odkhG6hn7gBxT3tH5hsm0,5962
414
+ lfx/components/models/language_model.py,sha256=TA24DMAXrlruY3mNsfI9qGltfQ2h9cQpxe8DW8HLdeE,5992
413
415
  lfx/components/mongodb/__init__.py,sha256=nFOQgiIvDnWGiWDSqZ0ERQme5DpA-cQgzybUiqXQtGw,953
414
416
  lfx/components/mongodb/mongodb_atlas.py,sha256=OlAstNMToHuvGI-8djkiGr7kdGBr927O0SE5cnVd0O0,8594
415
417
  lfx/components/needle/__init__.py,sha256=JeuDv_leDFPquDkypRh7hTmO40zMPZvD5XjmWN1VJMU,67
@@ -744,7 +746,7 @@ lfx/utils/schemas.py,sha256=NbOtVQBrn4d0BAu-0H_eCTZI2CXkKZlRY37XCSmuJwc,3865
744
746
  lfx/utils/util.py,sha256=Ww85wbr1-vjh2pXVtmTqoUVr6MXAW8S7eDx_Ys6HpE8,20696
745
747
  lfx/utils/util_strings.py,sha256=nU_IcdphNaj6bAPbjeL-c1cInQPfTBit8mp5Y57lwQk,1686
746
748
  lfx/utils/version.py,sha256=cHpbO0OJD2JQAvVaTH_6ibYeFbHJV0QDHs_YXXZ-bT8,671
747
- lfx_nightly-0.1.12.dev40.dist-info/METADATA,sha256=sUZ01YKv2VE7yqJ6CUxLVqEF3kHPysjqHgP-fx17CzQ,8290
748
- lfx_nightly-0.1.12.dev40.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
749
- lfx_nightly-0.1.12.dev40.dist-info/entry_points.txt,sha256=1724p3RHDQRT2CKx_QRzEIa7sFuSVO0Ux70YfXfoMT4,42
750
- lfx_nightly-0.1.12.dev40.dist-info/RECORD,,
749
+ lfx_nightly-0.1.12.dev41.dist-info/METADATA,sha256=3os2O6_b3b1S4rRuNOmExc3S6GRCHg3VSaIiUBwS6Xs,8290
750
+ lfx_nightly-0.1.12.dev41.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
751
+ lfx_nightly-0.1.12.dev41.dist-info/entry_points.txt,sha256=1724p3RHDQRT2CKx_QRzEIa7sFuSVO0Ux70YfXfoMT4,42
752
+ lfx_nightly-0.1.12.dev41.dist-info/RECORD,,