lfx-nightly 0.1.12.dev42__py3-none-any.whl → 0.2.0.dev0__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.
Files changed (93) hide show
  1. lfx/_assets/component_index.json +1 -1
  2. lfx/base/agents/agent.py +109 -29
  3. lfx/base/agents/events.py +102 -35
  4. lfx/base/agents/utils.py +15 -2
  5. lfx/base/composio/composio_base.py +24 -9
  6. lfx/base/datastax/__init__.py +5 -0
  7. lfx/{components/vectorstores/astradb.py → base/datastax/astradb_base.py} +84 -473
  8. lfx/base/io/chat.py +5 -4
  9. lfx/base/mcp/util.py +101 -15
  10. lfx/base/models/cometapi_constants.py +54 -0
  11. lfx/base/models/model_input_constants.py +74 -7
  12. lfx/base/models/ollama_constants.py +3 -0
  13. lfx/base/models/watsonx_constants.py +12 -0
  14. lfx/cli/commands.py +1 -1
  15. lfx/components/agents/__init__.py +3 -1
  16. lfx/components/agents/agent.py +47 -4
  17. lfx/components/agents/altk_agent.py +366 -0
  18. lfx/components/agents/cuga_agent.py +1 -1
  19. lfx/components/agents/mcp_component.py +32 -2
  20. lfx/components/amazon/amazon_bedrock_converse.py +1 -1
  21. lfx/components/apify/apify_actor.py +3 -3
  22. lfx/components/cometapi/__init__.py +32 -0
  23. lfx/components/cometapi/cometapi.py +166 -0
  24. lfx/components/datastax/__init__.py +12 -6
  25. lfx/components/datastax/{astra_assistant_manager.py → astradb_assistant_manager.py} +1 -0
  26. lfx/components/datastax/astradb_chatmemory.py +40 -0
  27. lfx/components/datastax/astradb_cql.py +5 -31
  28. lfx/components/datastax/astradb_graph.py +9 -123
  29. lfx/components/datastax/astradb_tool.py +12 -52
  30. lfx/components/datastax/astradb_vectorstore.py +133 -976
  31. lfx/components/datastax/create_assistant.py +1 -0
  32. lfx/components/datastax/create_thread.py +1 -0
  33. lfx/components/datastax/dotenv.py +1 -0
  34. lfx/components/datastax/get_assistant.py +1 -0
  35. lfx/components/datastax/getenvvar.py +1 -0
  36. lfx/components/datastax/graph_rag.py +1 -1
  37. lfx/components/datastax/list_assistants.py +1 -0
  38. lfx/components/datastax/run.py +1 -0
  39. lfx/components/docling/__init__.py +3 -0
  40. lfx/components/docling/docling_remote_vlm.py +284 -0
  41. lfx/components/helpers/memory.py +19 -4
  42. lfx/components/ibm/watsonx.py +25 -21
  43. lfx/components/input_output/chat.py +8 -0
  44. lfx/components/input_output/chat_output.py +8 -0
  45. lfx/components/knowledge_bases/ingestion.py +17 -9
  46. lfx/components/knowledge_bases/retrieval.py +16 -8
  47. lfx/components/logic/loop.py +4 -0
  48. lfx/components/mistral/mistral_embeddings.py +1 -1
  49. lfx/components/models/embedding_model.py +88 -7
  50. lfx/components/ollama/ollama.py +221 -14
  51. lfx/components/openrouter/openrouter.py +49 -147
  52. lfx/components/processing/parser.py +6 -1
  53. lfx/components/processing/structured_output.py +55 -17
  54. lfx/components/vectorstores/__init__.py +0 -6
  55. lfx/custom/custom_component/component.py +3 -2
  56. lfx/field_typing/constants.py +1 -0
  57. lfx/graph/edge/base.py +2 -2
  58. lfx/graph/graph/base.py +1 -1
  59. lfx/graph/graph/schema.py +3 -2
  60. lfx/graph/vertex/vertex_types.py +1 -1
  61. lfx/io/schema.py +6 -0
  62. lfx/memory/stubs.py +26 -7
  63. lfx/schema/message.py +6 -0
  64. lfx/schema/schema.py +5 -0
  65. lfx/services/settings/constants.py +1 -0
  66. {lfx_nightly-0.1.12.dev42.dist-info → lfx_nightly-0.2.0.dev0.dist-info}/METADATA +1 -1
  67. {lfx_nightly-0.1.12.dev42.dist-info → lfx_nightly-0.2.0.dev0.dist-info}/RECORD +70 -85
  68. lfx/components/datastax/astra_db.py +0 -77
  69. lfx/components/datastax/cassandra.py +0 -92
  70. lfx/components/vectorstores/astradb_graph.py +0 -326
  71. lfx/components/vectorstores/cassandra.py +0 -264
  72. lfx/components/vectorstores/cassandra_graph.py +0 -238
  73. lfx/components/vectorstores/chroma.py +0 -167
  74. lfx/components/vectorstores/clickhouse.py +0 -135
  75. lfx/components/vectorstores/couchbase.py +0 -102
  76. lfx/components/vectorstores/elasticsearch.py +0 -267
  77. lfx/components/vectorstores/faiss.py +0 -111
  78. lfx/components/vectorstores/graph_rag.py +0 -141
  79. lfx/components/vectorstores/hcd.py +0 -314
  80. lfx/components/vectorstores/milvus.py +0 -115
  81. lfx/components/vectorstores/mongodb_atlas.py +0 -213
  82. lfx/components/vectorstores/opensearch.py +0 -243
  83. lfx/components/vectorstores/pgvector.py +0 -72
  84. lfx/components/vectorstores/pinecone.py +0 -134
  85. lfx/components/vectorstores/qdrant.py +0 -109
  86. lfx/components/vectorstores/supabase.py +0 -76
  87. lfx/components/vectorstores/upstash.py +0 -124
  88. lfx/components/vectorstores/vectara.py +0 -97
  89. lfx/components/vectorstores/vectara_rag.py +0 -164
  90. lfx/components/vectorstores/weaviate.py +0 -89
  91. /lfx/components/datastax/{astra_vectorize.py → astradb_vectorize.py} +0 -0
  92. {lfx_nightly-0.1.12.dev42.dist-info → lfx_nightly-0.2.0.dev0.dist-info}/WHEEL +0 -0
  93. {lfx_nightly-0.1.12.dev42.dist-info → lfx_nightly-0.2.0.dev0.dist-info}/entry_points.txt +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.