trustgraph-flow 1.2.0__tar.gz → 1.2.4__tar.gz

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 (346) hide show
  1. trustgraph_flow-1.2.4/PKG-INFO +46 -0
  2. trustgraph_flow-1.2.4/pyproject.toml +123 -0
  3. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/mcp_tool/service.py +8 -4
  4. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/agent_manager.py +7 -8
  5. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/service.py +18 -18
  6. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/tools.py +9 -5
  7. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/recursive/chunker.py +8 -4
  8. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/token/chunker.py +8 -4
  9. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/config/service/config.py +6 -1
  10. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/config/service/flow.py +6 -2
  11. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/config/service/service.py +9 -4
  12. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/cores/knowledge.py +21 -17
  13. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/cores/service.py +10 -6
  14. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/mistral_ocr/processor.py +14 -10
  15. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/pdf/pdf_decoder.py +9 -5
  16. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/direct/milvus_doc_embeddings.py +7 -4
  17. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/direct/milvus_graph_embeddings.py +7 -4
  18. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/direct/milvus_object_embeddings.py +7 -4
  19. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/document_embeddings/embeddings.py +7 -3
  20. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/fastembed/processor.py +6 -1
  21. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/graph_embeddings/embeddings.py +7 -3
  22. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/external/wikipedia/service.py +4 -1
  23. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/agent/extract.py +13 -9
  24. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/definitions/extract.py +10 -6
  25. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/relationships/extract.py +10 -6
  26. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/topics/extract.py +7 -3
  27. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/object/row/extract.py +9 -5
  28. trustgraph_flow-1.2.4/trustgraph/flow_version.py +1 -0
  29. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/config/receiver.py +11 -8
  30. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/core_export.py +5 -1
  31. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/core_import.py +6 -2
  32. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/document_embeddings_export.py +5 -1
  33. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/document_load.py +5 -1
  34. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/entity_contexts_export.py +5 -1
  35. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/graph_embeddings_export.py +5 -1
  36. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/manager.py +6 -2
  37. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/mux.py +7 -3
  38. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/requestor.py +1 -1
  39. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/text_load.py +5 -1
  40. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/triples_export.py +5 -1
  41. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/constant_endpoint.py +1 -1
  42. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/metrics.py +1 -1
  43. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/socket.py +6 -6
  44. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/stream_endpoint.py +1 -1
  45. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/variable_endpoint.py +1 -1
  46. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/librarian/blob_store.py +9 -5
  47. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/librarian/librarian.py +22 -18
  48. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/librarian/service.py +14 -10
  49. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/metering/counter.py +9 -5
  50. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure/llm.py +11 -7
  51. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure_openai/llm.py +11 -7
  52. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/claude/llm.py +9 -5
  53. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/cohere/llm.py +9 -5
  54. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/googleaistudio/llm.py +10 -7
  55. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/llamafile/llm.py +9 -5
  56. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/lmstudio/llm.py +11 -7
  57. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/mistral/llm.py +9 -5
  58. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/ollama/llm.py +7 -3
  59. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/openai/llm.py +9 -5
  60. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/tgi/llm.py +10 -7
  61. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/vllm/llm.py +10 -7
  62. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/processing/processing.py +13 -10
  63. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/prompt/template/service.py +23 -19
  64. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/milvus/service.py +6 -1
  65. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/pinecone/service.py +8 -4
  66. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/qdrant/service.py +6 -1
  67. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/milvus/service.py +7 -4
  68. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/pinecone/service.py +8 -4
  69. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/qdrant/service.py +7 -4
  70. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/cassandra/service.py +6 -1
  71. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/falkordb/service.py +6 -1
  72. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/memgraph/service.py +6 -3
  73. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/neo4j/service.py +6 -1
  74. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/document_rag/document_rag.py +15 -11
  75. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/document_rag/rag.py +8 -4
  76. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/graph_rag/graph_rag.py +19 -15
  77. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/graph_rag/rag.py +8 -4
  78. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/rev_gateway/service.py +7 -7
  79. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/pinecone/write.py +6 -2
  80. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/qdrant/write.py +5 -1
  81. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/pinecone/write.py +6 -2
  82. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/qdrant/write.py +5 -1
  83. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/rows/cassandra/write.py +5 -1
  84. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/cassandra/write.py +5 -1
  85. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/falkordb/write.py +12 -8
  86. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/memgraph/write.py +22 -18
  87. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/neo4j/write.py +20 -16
  88. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/tables/config.py +18 -29
  89. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/tables/knowledge.py +26 -39
  90. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/tables/library.py +38 -53
  91. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/template/prompt_manager.py +7 -3
  92. trustgraph_flow-1.2.4/trustgraph_flow.egg-info/PKG-INFO +46 -0
  93. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph_flow.egg-info/SOURCES.txt +2 -61
  94. trustgraph_flow-1.2.4/trustgraph_flow.egg-info/entry_points.txt +62 -0
  95. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph_flow.egg-info/top_level.txt +0 -1
  96. trustgraph-flow-1.2.0/PKG-INFO +0 -15
  97. trustgraph-flow-1.2.0/scripts/agent-manager-react +0 -6
  98. trustgraph-flow-1.2.0/scripts/api-gateway +0 -6
  99. trustgraph-flow-1.2.0/scripts/chunker-recursive +0 -6
  100. trustgraph-flow-1.2.0/scripts/chunker-token +0 -6
  101. trustgraph-flow-1.2.0/scripts/config-svc +0 -6
  102. trustgraph-flow-1.2.0/scripts/de-query-milvus +0 -6
  103. trustgraph-flow-1.2.0/scripts/de-query-pinecone +0 -6
  104. trustgraph-flow-1.2.0/scripts/de-query-qdrant +0 -6
  105. trustgraph-flow-1.2.0/scripts/de-write-milvus +0 -6
  106. trustgraph-flow-1.2.0/scripts/de-write-pinecone +0 -6
  107. trustgraph-flow-1.2.0/scripts/de-write-qdrant +0 -6
  108. trustgraph-flow-1.2.0/scripts/document-embeddings +0 -6
  109. trustgraph-flow-1.2.0/scripts/document-rag +0 -6
  110. trustgraph-flow-1.2.0/scripts/embeddings-fastembed +0 -6
  111. trustgraph-flow-1.2.0/scripts/embeddings-ollama +0 -6
  112. trustgraph-flow-1.2.0/scripts/ge-query-milvus +0 -6
  113. trustgraph-flow-1.2.0/scripts/ge-query-pinecone +0 -6
  114. trustgraph-flow-1.2.0/scripts/ge-query-qdrant +0 -6
  115. trustgraph-flow-1.2.0/scripts/ge-write-milvus +0 -6
  116. trustgraph-flow-1.2.0/scripts/ge-write-pinecone +0 -6
  117. trustgraph-flow-1.2.0/scripts/ge-write-qdrant +0 -6
  118. trustgraph-flow-1.2.0/scripts/graph-embeddings +0 -6
  119. trustgraph-flow-1.2.0/scripts/graph-rag +0 -6
  120. trustgraph-flow-1.2.0/scripts/kg-extract-agent +0 -6
  121. trustgraph-flow-1.2.0/scripts/kg-extract-definitions +0 -6
  122. trustgraph-flow-1.2.0/scripts/kg-extract-relationships +0 -6
  123. trustgraph-flow-1.2.0/scripts/kg-manager +0 -6
  124. trustgraph-flow-1.2.0/scripts/kg-store +0 -6
  125. trustgraph-flow-1.2.0/scripts/librarian +0 -6
  126. trustgraph-flow-1.2.0/scripts/mcp-tool +0 -6
  127. trustgraph-flow-1.2.0/scripts/metering +0 -5
  128. trustgraph-flow-1.2.0/scripts/object-extract-row +0 -6
  129. trustgraph-flow-1.2.0/scripts/oe-write-milvus +0 -6
  130. trustgraph-flow-1.2.0/scripts/pdf-decoder +0 -6
  131. trustgraph-flow-1.2.0/scripts/pdf-ocr-mistral +0 -6
  132. trustgraph-flow-1.2.0/scripts/prompt-template +0 -6
  133. trustgraph-flow-1.2.0/scripts/rev-gateway +0 -6
  134. trustgraph-flow-1.2.0/scripts/rows-write-cassandra +0 -6
  135. trustgraph-flow-1.2.0/scripts/run-processing +0 -6
  136. trustgraph-flow-1.2.0/scripts/text-completion-azure +0 -6
  137. trustgraph-flow-1.2.0/scripts/text-completion-azure-openai +0 -6
  138. trustgraph-flow-1.2.0/scripts/text-completion-claude +0 -6
  139. trustgraph-flow-1.2.0/scripts/text-completion-cohere +0 -6
  140. trustgraph-flow-1.2.0/scripts/text-completion-googleaistudio +0 -6
  141. trustgraph-flow-1.2.0/scripts/text-completion-llamafile +0 -6
  142. trustgraph-flow-1.2.0/scripts/text-completion-lmstudio +0 -6
  143. trustgraph-flow-1.2.0/scripts/text-completion-mistral +0 -6
  144. trustgraph-flow-1.2.0/scripts/text-completion-ollama +0 -6
  145. trustgraph-flow-1.2.0/scripts/text-completion-openai +0 -6
  146. trustgraph-flow-1.2.0/scripts/text-completion-tgi +0 -6
  147. trustgraph-flow-1.2.0/scripts/text-completion-vllm +0 -6
  148. trustgraph-flow-1.2.0/scripts/triples-query-cassandra +0 -6
  149. trustgraph-flow-1.2.0/scripts/triples-query-falkordb +0 -6
  150. trustgraph-flow-1.2.0/scripts/triples-query-memgraph +0 -6
  151. trustgraph-flow-1.2.0/scripts/triples-query-neo4j +0 -6
  152. trustgraph-flow-1.2.0/scripts/triples-write-cassandra +0 -6
  153. trustgraph-flow-1.2.0/scripts/triples-write-falkordb +0 -6
  154. trustgraph-flow-1.2.0/scripts/triples-write-memgraph +0 -6
  155. trustgraph-flow-1.2.0/scripts/triples-write-neo4j +0 -6
  156. trustgraph-flow-1.2.0/scripts/wikipedia-lookup +0 -6
  157. trustgraph-flow-1.2.0/setup.py +0 -134
  158. trustgraph-flow-1.2.0/trustgraph/flow_version.py +0 -1
  159. trustgraph-flow-1.2.0/trustgraph_flow.egg-info/PKG-INFO +0 -15
  160. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/README.md +0 -0
  161. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/setup.cfg +0 -0
  162. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/__init__.py +0 -0
  163. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/__init__.py +0 -0
  164. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/mcp_tool/__init__.py +0 -0
  165. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/mcp_tool/__main__.py +0 -0
  166. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/__init__.py +0 -0
  167. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/__main__.py +0 -0
  168. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/agent/react/types.py +0 -0
  169. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/__init__.py +0 -0
  170. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/recursive/__init__.py +0 -0
  171. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/recursive/__main__.py +0 -0
  172. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/token/__init__.py +0 -0
  173. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/chunking/token/__main__.py +0 -0
  174. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/config/service/__init__.py +0 -0
  175. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/config/service/__main__.py +0 -0
  176. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/cores/__init__.py +0 -0
  177. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/cores/__main__.py +0 -0
  178. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/__init__.py +0 -0
  179. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/mistral_ocr/__init__.py +0 -0
  180. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/mistral_ocr/__main__.py +0 -0
  181. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/pdf/__init__.py +0 -0
  182. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/decoding/pdf/__main__.py +0 -0
  183. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/direct/__init__.py +0 -0
  184. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/direct/cassandra.py +0 -0
  185. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/__init__.py +0 -0
  186. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/document_embeddings/__init__.py +0 -0
  187. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/document_embeddings/__main__.py +0 -0
  188. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/fastembed/__init__.py +0 -0
  189. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/fastembed/__main__.py +0 -0
  190. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/graph_embeddings/__init__.py +0 -0
  191. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/graph_embeddings/__main__.py +0 -0
  192. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/ollama/__init__.py +0 -0
  193. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/ollama/__main__.py +0 -0
  194. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/embeddings/ollama/processor.py +0 -0
  195. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/external/__init__.py +0 -0
  196. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/external/wikipedia/__init__.py +0 -0
  197. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/external/wikipedia/__main__.py +0 -0
  198. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/__init__.py +0 -0
  199. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/__init__.py +0 -0
  200. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/agent/__init__.py +0 -0
  201. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/agent/__main__.py +0 -0
  202. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/definitions/__init__.py +0 -0
  203. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/definitions/__main__.py +0 -0
  204. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/relationships/__init__.py +0 -0
  205. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/relationships/__main__.py +0 -0
  206. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/topics/__init__.py +0 -0
  207. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/kg/topics/__main__.py +0 -0
  208. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/object/__init__.py +0 -0
  209. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/object/row/__init__.py +0 -0
  210. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/extract/object/row/__main__.py +0 -0
  211. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/__init__.py +0 -0
  212. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/__main__.py +0 -0
  213. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/auth.py +0 -0
  214. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/agent.py +0 -0
  215. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/config.py +0 -0
  216. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/document_embeddings_import.py +0 -0
  217. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/document_rag.py +0 -0
  218. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/embeddings.py +0 -0
  219. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/entity_contexts_import.py +0 -0
  220. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/flow.py +0 -0
  221. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/graph_embeddings_import.py +0 -0
  222. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/graph_embeddings_query.py +0 -0
  223. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/graph_rag.py +0 -0
  224. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/knowledge.py +0 -0
  225. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/librarian.py +0 -0
  226. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/mcp_tool.py +0 -0
  227. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/prompt.py +0 -0
  228. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/sender.py +0 -0
  229. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/serialize.py +0 -0
  230. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/streamer.py +0 -0
  231. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/text_completion.py +0 -0
  232. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/triples_import.py +0 -0
  233. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/dispatch/triples_query.py +0 -0
  234. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/endpoint/manager.py +0 -0
  235. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/running.py +0 -0
  236. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/service.py +0 -0
  237. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/unused/dbpedia.py +0 -0
  238. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/unused/encyclopedia.py +0 -0
  239. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/gateway/unused/internet_search.py +0 -0
  240. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/librarian/__init__.py +0 -0
  241. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/librarian/__main__.py +0 -0
  242. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/metering/__init__.py +0 -0
  243. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/metering/__main__.py +0 -0
  244. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/__init__.py +0 -0
  245. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/__init__.py +0 -0
  246. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure/__init__.py +0 -0
  247. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure/__main__.py +0 -0
  248. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure_openai/__init__.py +0 -0
  249. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/azure_openai/__main__.py +0 -0
  250. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/claude/__init__.py +0 -0
  251. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/claude/__main__.py +0 -0
  252. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/cohere/__init__.py +0 -0
  253. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/cohere/__main__.py +0 -0
  254. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/googleaistudio/__init__.py +0 -0
  255. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/googleaistudio/__main__.py +0 -0
  256. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/llamafile/__init__.py +0 -0
  257. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/llamafile/__main__.py +0 -0
  258. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/lmstudio/__init__.py +0 -0
  259. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/lmstudio/__main__.py +0 -0
  260. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/mistral/__init__.py +0 -0
  261. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/mistral/__main__.py +0 -0
  262. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/ollama/__init__.py +0 -0
  263. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/ollama/__main__.py +0 -0
  264. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/openai/__init__.py +0 -0
  265. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/openai/__main__.py +0 -0
  266. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/tgi/__init__.py +0 -0
  267. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/tgi/__main__.py +0 -0
  268. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/vllm/__init__.py +0 -0
  269. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/model/text_completion/vllm/__main__.py +0 -0
  270. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/processing/__init__.py +0 -0
  271. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/processing/__main__.py +0 -0
  272. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/prompt/__init__.py +0 -0
  273. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/prompt/template/__init__.py +0 -0
  274. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/prompt/template/__main__.py +0 -0
  275. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/__init__.py +0 -0
  276. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/__init__.py +0 -0
  277. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/milvus/__init__.py +0 -0
  278. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/milvus/__main__.py +0 -0
  279. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/pinecone/__init__.py +0 -0
  280. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/pinecone/__main__.py +0 -0
  281. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/qdrant/__init__.py +0 -0
  282. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/doc_embeddings/qdrant/__main__.py +0 -0
  283. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/__init__.py +0 -0
  284. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/milvus/__init__.py +0 -0
  285. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/milvus/__main__.py +0 -0
  286. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/pinecone/__init__.py +0 -0
  287. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/pinecone/__main__.py +0 -0
  288. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/qdrant/__init__.py +0 -0
  289. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/graph_embeddings/qdrant/__main__.py +0 -0
  290. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/__init__.py +0 -0
  291. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/cassandra/__init__.py +0 -0
  292. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/cassandra/__main__.py +0 -0
  293. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/falkordb/__init__.py +0 -0
  294. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/falkordb/__main__.py +0 -0
  295. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/memgraph/__init__.py +0 -0
  296. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/memgraph/__main__.py +0 -0
  297. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/neo4j/__init__.py +0 -0
  298. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/query/triples/neo4j/__main__.py +0 -0
  299. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/__init__.py +0 -0
  300. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/document_rag/__init__.py +0 -0
  301. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/document_rag/__main__.py +0 -0
  302. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/graph_rag/__init__.py +0 -0
  303. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/retrieval/graph_rag/__main__.py +0 -0
  304. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/rev_gateway/__init__.py +0 -0
  305. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/rev_gateway/__main__.py +0 -0
  306. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/rev_gateway/dispatcher.py +0 -0
  307. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/__init__.py +0 -0
  308. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/__init__.py +0 -0
  309. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/milvus/__init__.py +0 -0
  310. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/milvus/__main__.py +0 -0
  311. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/milvus/write.py +0 -0
  312. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/pinecone/__init__.py +0 -0
  313. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/pinecone/__main__.py +0 -0
  314. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/qdrant/__init__.py +0 -0
  315. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/doc_embeddings/qdrant/__main__.py +0 -0
  316. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/__init__.py +0 -0
  317. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/milvus/__init__.py +0 -0
  318. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/milvus/__main__.py +0 -0
  319. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/milvus/write.py +0 -0
  320. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/pinecone/__init__.py +0 -0
  321. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/pinecone/__main__.py +0 -0
  322. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/qdrant/__init__.py +0 -0
  323. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/graph_embeddings/qdrant/__main__.py +0 -0
  324. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/knowledge/__init__.py +0 -0
  325. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/knowledge/__main__.py +0 -0
  326. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/knowledge/store.py +0 -0
  327. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/object_embeddings/__init__.py +0 -0
  328. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/object_embeddings/milvus/__init__.py +0 -0
  329. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/object_embeddings/milvus/__main__.py +0 -0
  330. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/object_embeddings/milvus/write.py +0 -0
  331. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/rows/__init__.py +0 -0
  332. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/rows/cassandra/__init__.py +0 -0
  333. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/rows/cassandra/__main__.py +0 -0
  334. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/__init__.py +0 -0
  335. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/cassandra/__init__.py +0 -0
  336. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/cassandra/__main__.py +0 -0
  337. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/falkordb/__init__.py +0 -0
  338. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/falkordb/__main__.py +0 -0
  339. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/memgraph/__init__.py +0 -0
  340. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/memgraph/__main__.py +0 -0
  341. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/neo4j/__init__.py +0 -0
  342. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/storage/triples/neo4j/__main__.py +0 -0
  343. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/tables/__init__.py +0 -0
  344. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph/template/__init__.py +0 -0
  345. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph_flow.egg-info/dependency_links.txt +0 -0
  346. {trustgraph-flow-1.2.0 → trustgraph_flow-1.2.4}/trustgraph_flow.egg-info/requires.txt +2 -2
@@ -0,0 +1,46 @@
1
+ Metadata-Version: 2.4
2
+ Name: trustgraph-flow
3
+ Version: 1.2.4
4
+ Summary: TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline.
5
+ Author-email: "trustgraph.ai" <security@trustgraph.ai>
6
+ Project-URL: Homepage, https://github.com/trustgraph-ai/trustgraph
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Operating System :: OS Independent
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+ Requires-Dist: trustgraph-base<1.3,>=1.2
12
+ Requires-Dist: aiohttp
13
+ Requires-Dist: anthropic
14
+ Requires-Dist: cassandra-driver
15
+ Requires-Dist: cohere
16
+ Requires-Dist: cryptography
17
+ Requires-Dist: falkordb
18
+ Requires-Dist: fastembed
19
+ Requires-Dist: google-genai
20
+ Requires-Dist: ibis
21
+ Requires-Dist: jsonschema
22
+ Requires-Dist: langchain
23
+ Requires-Dist: langchain-community
24
+ Requires-Dist: langchain-core
25
+ Requires-Dist: langchain-text-splitters
26
+ Requires-Dist: mcp
27
+ Requires-Dist: minio
28
+ Requires-Dist: mistralai
29
+ Requires-Dist: neo4j
30
+ Requires-Dist: ollama
31
+ Requires-Dist: openai
32
+ Requires-Dist: pinecone[grpc]
33
+ Requires-Dist: prometheus-client
34
+ Requires-Dist: pulsar-client
35
+ Requires-Dist: pymilvus
36
+ Requires-Dist: pypdf
37
+ Requires-Dist: mistralai
38
+ Requires-Dist: pyyaml
39
+ Requires-Dist: qdrant-client
40
+ Requires-Dist: rdflib
41
+ Requires-Dist: requests
42
+ Requires-Dist: tabulate
43
+ Requires-Dist: tiktoken
44
+ Requires-Dist: urllib3
45
+
46
+ See https://trustgraph.ai/
@@ -0,0 +1,123 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "trustgraph-flow"
7
+ dynamic = ["version"]
8
+ authors = [{name = "trustgraph.ai", email = "security@trustgraph.ai"}]
9
+ description = "TrustGraph provides a means to run a pipeline of flexible AI processing components in a flexible means to achieve a processing pipeline."
10
+ readme = "README.md"
11
+ requires-python = ">=3.8"
12
+ dependencies = [
13
+ "trustgraph-base>=1.2,<1.3",
14
+ "aiohttp",
15
+ "anthropic",
16
+ "cassandra-driver",
17
+ "cohere",
18
+ "cryptography",
19
+ "falkordb",
20
+ "fastembed",
21
+ "google-genai",
22
+ "ibis",
23
+ "jsonschema",
24
+ "langchain",
25
+ "langchain-community",
26
+ "langchain-core",
27
+ "langchain-text-splitters",
28
+ "mcp",
29
+ "minio",
30
+ "mistralai",
31
+ "neo4j",
32
+ "ollama",
33
+ "openai",
34
+ "pinecone[grpc]",
35
+ "prometheus-client",
36
+ "pulsar-client",
37
+ "pymilvus",
38
+ "pypdf",
39
+ "mistralai",
40
+ "pyyaml",
41
+ "qdrant-client",
42
+ "rdflib",
43
+ "requests",
44
+ "tabulate",
45
+ "tiktoken",
46
+ "urllib3",
47
+ ]
48
+ classifiers = [
49
+ "Programming Language :: Python :: 3",
50
+ "Operating System :: OS Independent",
51
+ ]
52
+
53
+ [project.urls]
54
+ Homepage = "https://github.com/trustgraph-ai/trustgraph"
55
+
56
+ [project.scripts]
57
+ agent-manager-react = "trustgraph.agent.react:run"
58
+ api-gateway = "trustgraph.gateway:run"
59
+ chunker-recursive = "trustgraph.chunking.recursive:run"
60
+ chunker-token = "trustgraph.chunking.token:run"
61
+ config-svc = "trustgraph.config.service:run"
62
+ de-query-milvus = "trustgraph.query.doc_embeddings.milvus:run"
63
+ de-query-pinecone = "trustgraph.query.doc_embeddings.pinecone:run"
64
+ de-query-qdrant = "trustgraph.query.doc_embeddings.qdrant:run"
65
+ de-write-milvus = "trustgraph.storage.doc_embeddings.milvus:run"
66
+ de-write-pinecone = "trustgraph.storage.doc_embeddings.pinecone:run"
67
+ de-write-qdrant = "trustgraph.storage.doc_embeddings.qdrant:run"
68
+ document-embeddings = "trustgraph.embeddings.document_embeddings:run"
69
+ document-rag = "trustgraph.retrieval.document_rag:run"
70
+ embeddings-fastembed = "trustgraph.embeddings.fastembed:run"
71
+ embeddings-ollama = "trustgraph.embeddings.ollama:run"
72
+ ge-query-milvus = "trustgraph.query.graph_embeddings.milvus:run"
73
+ ge-query-pinecone = "trustgraph.query.graph_embeddings.pinecone:run"
74
+ ge-query-qdrant = "trustgraph.query.graph_embeddings.qdrant:run"
75
+ ge-write-milvus = "trustgraph.storage.graph_embeddings.milvus:run"
76
+ ge-write-pinecone = "trustgraph.storage.graph_embeddings.pinecone:run"
77
+ ge-write-qdrant = "trustgraph.storage.graph_embeddings.qdrant:run"
78
+ graph-embeddings = "trustgraph.embeddings.graph_embeddings:run"
79
+ graph-rag = "trustgraph.retrieval.graph_rag:run"
80
+ kg-extract-agent = "trustgraph.extract.kg.agent:run"
81
+ kg-extract-definitions = "trustgraph.extract.kg.definitions:run"
82
+ kg-extract-relationships = "trustgraph.extract.kg.relationships:run"
83
+ kg-extract-topics = "trustgraph.extract.kg.topics:run"
84
+ kg-manager = "trustgraph.cores:run"
85
+ kg-store = "trustgraph.storage.knowledge:run"
86
+ librarian = "trustgraph.librarian:run"
87
+ mcp-tool = "trustgraph.agent.mcp_tool:run"
88
+ metering = "trustgraph.metering:run"
89
+ object-extract-row = "trustgraph.extract.object.row:run"
90
+ oe-write-milvus = "trustgraph.storage.object_embeddings.milvus:run"
91
+ pdf-decoder = "trustgraph.decoding.pdf:run"
92
+ pdf-ocr-mistral = "trustgraph.decoding.mistral_ocr:run"
93
+ prompt-template = "trustgraph.prompt.template:run"
94
+ rev-gateway = "trustgraph.rev_gateway:run"
95
+ rows-write-cassandra = "trustgraph.storage.rows.cassandra:run"
96
+ run-processing = "trustgraph.processing:run"
97
+ text-completion-azure = "trustgraph.model.text_completion.azure:run"
98
+ text-completion-azure-openai = "trustgraph.model.text_completion.azure_openai:run"
99
+ text-completion-claude = "trustgraph.model.text_completion.claude:run"
100
+ text-completion-cohere = "trustgraph.model.text_completion.cohere:run"
101
+ text-completion-googleaistudio = "trustgraph.model.text_completion.googleaistudio:run"
102
+ text-completion-llamafile = "trustgraph.model.text_completion.llamafile:run"
103
+ text-completion-lmstudio = "trustgraph.model.text_completion.lmstudio:run"
104
+ text-completion-mistral = "trustgraph.model.text_completion.mistral:run"
105
+ text-completion-ollama = "trustgraph.model.text_completion.ollama:run"
106
+ text-completion-openai = "trustgraph.model.text_completion.openai:run"
107
+ text-completion-tgi = "trustgraph.model.text_completion.tgi:run"
108
+ text-completion-vllm = "trustgraph.model.text_completion.vllm:run"
109
+ triples-query-cassandra = "trustgraph.query.triples.cassandra:run"
110
+ triples-query-falkordb = "trustgraph.query.triples.falkordb:run"
111
+ triples-query-memgraph = "trustgraph.query.triples.memgraph:run"
112
+ triples-query-neo4j = "trustgraph.query.triples.neo4j:run"
113
+ triples-write-cassandra = "trustgraph.storage.triples.cassandra:run"
114
+ triples-write-falkordb = "trustgraph.storage.triples.falkordb:run"
115
+ triples-write-memgraph = "trustgraph.storage.triples.memgraph:run"
116
+ triples-write-neo4j = "trustgraph.storage.triples.neo4j:run"
117
+ wikipedia-lookup = "trustgraph.external.wikipedia:run"
118
+
119
+ [tool.setuptools.packages.find]
120
+ include = ["trustgraph*"]
121
+
122
+ [tool.setuptools.dynamic]
123
+ version = {attr = "trustgraph.flow_version.__version__"}
@@ -5,11 +5,15 @@ name + parameters, output is the response, either a string or an object.
5
5
  """
6
6
 
7
7
  import json
8
+ import logging
8
9
  from mcp.client.streamable_http import streamablehttp_client
9
10
  from mcp import ClientSession
10
11
 
11
12
  from ... base import ToolService
12
13
 
14
+ # Module logger
15
+ logger = logging.getLogger(__name__)
16
+
13
17
  default_ident = "mcp-tool"
14
18
 
15
19
  class Service(ToolService):
@@ -26,7 +30,7 @@ class Service(ToolService):
26
30
 
27
31
  async def on_mcp_config(self, config, version):
28
32
 
29
- print("Got config version", version)
33
+ logger.info(f"Got config version {version}")
30
34
 
31
35
  if "mcp" not in config: return
32
36
 
@@ -52,7 +56,7 @@ class Service(ToolService):
52
56
  else:
53
57
  remote_name = name
54
58
 
55
- print("Invoking", remote_name, "at", url, flush=True)
59
+ logger.info(f"Invoking {remote_name} at {url}")
56
60
 
57
61
  # Connect to a streamable HTTP server
58
62
  async with streamablehttp_client(url) as (
@@ -86,13 +90,13 @@ class Service(ToolService):
86
90
  except BaseExceptionGroup as e:
87
91
 
88
92
  for child in e.exceptions:
89
- print(child)
93
+ logger.debug(f"Child: {child}")
90
94
 
91
95
  raise e.exceptions[0]
92
96
 
93
97
  except Exception as e:
94
98
 
95
- print(e)
99
+ logger.error(f"Error invoking MCP tool: {e}", exc_info=True)
96
100
  raise e
97
101
 
98
102
  @staticmethod
@@ -164,18 +164,18 @@ class AgentManager:
164
164
 
165
165
  async def reason(self, question, history, context):
166
166
 
167
- print(f"calling reason: {question}", flush=True)
167
+ logger.debug(f"calling reason: {question}")
168
168
 
169
169
  tools = self.tools
170
170
 
171
- print(f"in reason", flush=True)
172
- print(tools, flush=True)
171
+ logger.debug("in reason")
172
+ logger.debug(f"tools: {tools}")
173
173
 
174
174
  tool_names = ",".join([
175
175
  t for t in self.tools.keys()
176
176
  ])
177
177
 
178
- print("Tool names:", tool_names, flush=True)
178
+ logger.debug(f"Tool names: {tool_names}")
179
179
 
180
180
  variables = {
181
181
  "question": question,
@@ -208,14 +208,14 @@ class AgentManager:
208
208
  ]
209
209
  }
210
210
 
211
- print(json.dumps(variables, indent=4), flush=True)
211
+ logger.debug(f"Variables: {json.dumps(variables, indent=4)}")
212
212
 
213
213
  logger.info(f"prompt: {variables}")
214
214
 
215
215
  # Get text response from prompt service
216
216
  response_text = await context("prompt-request").agent_react(variables)
217
217
 
218
- print(f"Response text:\n{response_text}", flush=True)
218
+ logger.debug(f"Response text:\n{response_text}")
219
219
 
220
220
  logger.info(f"response: {response_text}")
221
221
 
@@ -233,7 +233,6 @@ class AgentManager:
233
233
  async def react(self, question, history, think, observe, context):
234
234
 
235
235
  logger.info(f"question: {question}")
236
- print(f"question: {question}", flush=True)
237
236
 
238
237
  act = await self.reason(
239
238
  question = question,
@@ -256,7 +255,7 @@ class AgentManager:
256
255
  else:
257
256
  raise RuntimeError(f"No action for {act.name}!")
258
257
 
259
- print("TOOL>>>", act, flush=True)
258
+ logger.debug(f"TOOL>>> {act}")
260
259
 
261
260
  resp = await action.implementation(context).invoke(
262
261
  **act.arguments
@@ -8,7 +8,7 @@ import sys
8
8
  import functools
9
9
  import logging
10
10
 
11
- logging.basicConfig(level=logging.DEBUG)
11
+ # Module logger
12
12
  logger = logging.getLogger(__name__)
13
13
 
14
14
  from ... base import AgentService, TextCompletionClientSpec, PromptClientSpec
@@ -81,7 +81,7 @@ class Processor(AgentService):
81
81
 
82
82
  async def on_tools_config(self, config, version):
83
83
 
84
- print("Loading configuration version", version)
84
+ logger.info(f"Loading configuration version {version}")
85
85
 
86
86
  try:
87
87
 
@@ -151,13 +151,13 @@ class Processor(AgentService):
151
151
  additional_context=additional
152
152
  )
153
153
 
154
- print(f"Loaded {len(tools)} tools", flush=True)
155
- print("Tool configuration reloaded.", flush=True)
154
+ logger.info(f"Loaded {len(tools)} tools")
155
+ logger.info("Tool configuration reloaded.")
156
156
 
157
157
  except Exception as e:
158
158
 
159
- print("on_tools_config Exception:", e, flush=True)
160
- print("Configuration reload failed", flush=True)
159
+ logger.error(f"on_tools_config Exception: {e}", exc_info=True)
160
+ logger.error("Configuration reload failed")
161
161
 
162
162
  async def agent_request(self, request, respond, next, flow):
163
163
 
@@ -176,16 +176,16 @@ class Processor(AgentService):
176
176
  else:
177
177
  history = []
178
178
 
179
- print(f"Question: {request.question}", flush=True)
179
+ logger.info(f"Question: {request.question}")
180
180
 
181
181
  if len(history) >= self.max_iterations:
182
182
  raise RuntimeError("Too many agent iterations")
183
183
 
184
- print(f"History: {history}", flush=True)
184
+ logger.debug(f"History: {history}")
185
185
 
186
186
  async def think(x):
187
187
 
188
- print(f"Think: {x}", flush=True)
188
+ logger.debug(f"Think: {x}")
189
189
 
190
190
  r = AgentResponse(
191
191
  answer=None,
@@ -198,7 +198,7 @@ class Processor(AgentService):
198
198
 
199
199
  async def observe(x):
200
200
 
201
- print(f"Observe: {x}", flush=True)
201
+ logger.debug(f"Observe: {x}")
202
202
 
203
203
  r = AgentResponse(
204
204
  answer=None,
@@ -209,7 +209,7 @@ class Processor(AgentService):
209
209
 
210
210
  await respond(r)
211
211
 
212
- print("Call React", flush=True)
212
+ logger.debug("Call React")
213
213
 
214
214
  act = await self.agent.react(
215
215
  question = request.question,
@@ -219,11 +219,11 @@ class Processor(AgentService):
219
219
  context = flow,
220
220
  )
221
221
 
222
- print(f"Action: {act}", flush=True)
222
+ logger.debug(f"Action: {act}")
223
223
 
224
224
  if isinstance(act, Final):
225
225
 
226
- print("Send final response...", flush=True)
226
+ logger.debug("Send final response...")
227
227
 
228
228
  if isinstance(act.final, str):
229
229
  f = act.final
@@ -238,11 +238,11 @@ class Processor(AgentService):
238
238
 
239
239
  await respond(r)
240
240
 
241
- print("Done.", flush=True)
241
+ logger.debug("Done.")
242
242
 
243
243
  return
244
244
 
245
- print("Send next...", flush=True)
245
+ logger.debug("Send next...")
246
246
 
247
247
  history.append(act)
248
248
 
@@ -263,15 +263,15 @@ class Processor(AgentService):
263
263
 
264
264
  await next(r)
265
265
 
266
- print("Done.", flush=True)
266
+ logger.debug("React agent processing complete")
267
267
 
268
268
  return
269
269
 
270
270
  except Exception as e:
271
271
 
272
- print(f"agent_request Exception: {e}")
272
+ logger.error(f"agent_request Exception: {e}", exc_info=True)
273
273
 
274
- print("Send error response...", flush=True)
274
+ logger.debug("Send error response...")
275
275
 
276
276
  r = AgentResponse(
277
277
  error=Error(
@@ -1,7 +1,11 @@
1
1
 
2
2
  import json
3
+ import logging
3
4
  from .types import Argument
4
5
 
6
+ # Module logger
7
+ logger = logging.getLogger(__name__)
8
+
5
9
  # This tool implementation knows how to put a question to the graph RAG
6
10
  # service
7
11
  class KnowledgeQueryImpl:
@@ -21,7 +25,7 @@ class KnowledgeQueryImpl:
21
25
 
22
26
  async def invoke(self, **arguments):
23
27
  client = self.context("graph-rag-request")
24
- print("Graph RAG question...", flush=True)
28
+ logger.debug("Graph RAG question...")
25
29
  return await client.rag(
26
30
  arguments.get("question")
27
31
  )
@@ -44,7 +48,7 @@ class TextCompletionImpl:
44
48
 
45
49
  async def invoke(self, **arguments):
46
50
  client = self.context("prompt-request")
47
- print("Prompt question...", flush=True)
51
+ logger.debug("Prompt question...")
48
52
  return await client.question(
49
53
  arguments.get("question")
50
54
  )
@@ -67,13 +71,13 @@ class McpToolImpl:
67
71
 
68
72
  client = self.context("mcp-tool-request")
69
73
 
70
- print(f"MCP tool invocation: {self.mcp_tool_id}...", flush=True)
74
+ logger.debug(f"MCP tool invocation: {self.mcp_tool_id}...")
71
75
  output = await client.invoke(
72
76
  name = self.mcp_tool_id,
73
77
  parameters = arguments, # Pass the actual arguments
74
78
  )
75
79
 
76
- print(output)
80
+ logger.debug(f"MCP tool output: {output}")
77
81
 
78
82
  if isinstance(output, str):
79
83
  return output
@@ -94,7 +98,7 @@ class PromptImpl:
94
98
 
95
99
  async def invoke(self, **arguments):
96
100
  client = self.context("prompt-request")
97
- print(f"Prompt template invocation: {self.template_id}...", flush=True)
101
+ logger.debug(f"Prompt template invocation: {self.template_id}...")
98
102
  return await client.prompt(
99
103
  id=self.template_id,
100
104
  variables=arguments
@@ -4,12 +4,16 @@ Simple decoder, accepts text documents on input, outputs chunks from the
4
4
  as text as separate output objects.
5
5
  """
6
6
 
7
+ import logging
7
8
  from langchain_text_splitters import RecursiveCharacterTextSplitter
8
9
  from prometheus_client import Histogram
9
10
 
10
11
  from ... schema import TextDocument, Chunk
11
12
  from ... base import FlowProcessor, ConsumerSpec, ProducerSpec
12
13
 
14
+ # Module logger
15
+ logger = logging.getLogger(__name__)
16
+
13
17
  default_ident = "chunker"
14
18
 
15
19
  class Processor(FlowProcessor):
@@ -54,12 +58,12 @@ class Processor(FlowProcessor):
54
58
  )
55
59
  )
56
60
 
57
- print("Chunker initialised", flush=True)
61
+ logger.info("Recursive chunker initialized")
58
62
 
59
63
  async def on_message(self, msg, consumer, flow):
60
64
 
61
65
  v = msg.value()
62
- print(f"Chunking {v.metadata.id}...", flush=True)
66
+ logger.info(f"Chunking document {v.metadata.id}...")
63
67
 
64
68
  texts = self.text_splitter.create_documents(
65
69
  [v.text.decode("utf-8")]
@@ -67,7 +71,7 @@ class Processor(FlowProcessor):
67
71
 
68
72
  for ix, chunk in enumerate(texts):
69
73
 
70
- print("Chunk", len(chunk.page_content), flush=True)
74
+ logger.debug(f"Created chunk of size {len(chunk.page_content)}")
71
75
 
72
76
  r = Chunk(
73
77
  metadata=v.metadata,
@@ -80,7 +84,7 @@ class Processor(FlowProcessor):
80
84
 
81
85
  await flow("output").send(r)
82
86
 
83
- print("Done.", flush=True)
87
+ logger.debug("Document chunking complete")
84
88
 
85
89
  @staticmethod
86
90
  def add_args(parser):
@@ -4,12 +4,16 @@ Simple decoder, accepts text documents on input, outputs chunks from the
4
4
  as text as separate output objects.
5
5
  """
6
6
 
7
+ import logging
7
8
  from langchain_text_splitters import TokenTextSplitter
8
9
  from prometheus_client import Histogram
9
10
 
10
11
  from ... schema import TextDocument, Chunk
11
12
  from ... base import FlowProcessor
12
13
 
14
+ # Module logger
15
+ logger = logging.getLogger(__name__)
16
+
13
17
  default_ident = "chunker"
14
18
 
15
19
  class Processor(FlowProcessor):
@@ -53,12 +57,12 @@ class Processor(FlowProcessor):
53
57
  )
54
58
  )
55
59
 
56
- print("Chunker initialised", flush=True)
60
+ logger.info("Token chunker initialized")
57
61
 
58
62
  async def on_message(self, msg, consumer, flow):
59
63
 
60
64
  v = msg.value()
61
- print(f"Chunking {v.metadata.id}...", flush=True)
65
+ logger.info(f"Chunking document {v.metadata.id}...")
62
66
 
63
67
  texts = self.text_splitter.create_documents(
64
68
  [v.text.decode("utf-8")]
@@ -66,7 +70,7 @@ class Processor(FlowProcessor):
66
70
 
67
71
  for ix, chunk in enumerate(texts):
68
72
 
69
- print("Chunk", len(chunk.page_content), flush=True)
73
+ logger.debug(f"Created chunk of size {len(chunk.page_content)}")
70
74
 
71
75
  r = Chunk(
72
76
  metadata=v.metadata,
@@ -79,7 +83,7 @@ class Processor(FlowProcessor):
79
83
 
80
84
  await flow("output").send(r)
81
85
 
82
- print("Done.", flush=True)
86
+ logger.debug("Document chunking complete")
83
87
 
84
88
  @staticmethod
85
89
  def add_args(parser):
@@ -1,9 +1,14 @@
1
1
 
2
+ import logging
3
+
2
4
  from trustgraph.schema import ConfigResponse
3
5
  from trustgraph.schema import ConfigValue, Error
4
6
 
5
7
  from ... tables.config import ConfigTableStore
6
8
 
9
+ # Module logger
10
+ logger = logging.getLogger(__name__)
11
+
7
12
  class ConfigurationClass:
8
13
 
9
14
  async def keys(self):
@@ -228,7 +233,7 @@ class Configuration:
228
233
 
229
234
  async def handle(self, msg):
230
235
 
231
- print("Handle message ", msg.operation)
236
+ logger.debug(f"Handling config message: {msg.operation}")
232
237
 
233
238
  if msg.operation == "get":
234
239
 
@@ -1,6 +1,10 @@
1
1
 
2
2
  from trustgraph.schema import FlowResponse, Error
3
3
  import json
4
+ import logging
5
+
6
+ # Module logger
7
+ logger = logging.getLogger(__name__)
4
8
 
5
9
  class FlowConfig:
6
10
  def __init__(self, config):
@@ -41,7 +45,7 @@ class FlowConfig:
41
45
 
42
46
  async def handle_delete_class(self, msg):
43
47
 
44
- print(msg)
48
+ logger.debug(f"Flow config message: {msg}")
45
49
 
46
50
  await self.config.get("flow-classes").delete(msg.class_name)
47
51
 
@@ -218,7 +222,7 @@ class FlowConfig:
218
222
 
219
223
  async def handle(self, msg):
220
224
 
221
- print("Handle message ", msg.operation)
225
+ logger.debug(f"Handling flow message: {msg.operation}")
222
226
 
223
227
  if msg.operation == "list-classes":
224
228
  resp = await self.handle_list_classes(msg)
@@ -3,6 +3,8 @@
3
3
  Config service. Manages system global configuration state
4
4
  """
5
5
 
6
+ import logging
7
+
6
8
  from trustgraph.schema import Error
7
9
 
8
10
  from trustgraph.schema import ConfigRequest, ConfigResponse, ConfigPush
@@ -20,6 +22,9 @@ from . flow import FlowConfig
20
22
  from ... base import ProcessorMetrics, ConsumerMetrics, ProducerMetrics
21
23
  from ... base import Consumer, Producer
22
24
 
25
+ # Module logger
26
+ logger = logging.getLogger(__name__)
27
+
23
28
  # FIXME: How to ensure this doesn't conflict with other usage?
24
29
  keyspace = "config"
25
30
 
@@ -146,7 +151,7 @@ class Processor(AsyncProcessor):
146
151
 
147
152
  self.flow = FlowConfig(self.config)
148
153
 
149
- print("Service initialised.")
154
+ logger.info("Config service initialized")
150
155
 
151
156
  async def start(self):
152
157
 
@@ -172,7 +177,7 @@ class Processor(AsyncProcessor):
172
177
 
173
178
  # Race condition, should make sure version & config sync
174
179
 
175
- print("Pushed version ", await self.config.get_version())
180
+ logger.info(f"Pushed configuration version {await self.config.get_version()}")
176
181
 
177
182
  async def on_config_request(self, msg, consumer, flow):
178
183
 
@@ -183,7 +188,7 @@ class Processor(AsyncProcessor):
183
188
  # Sender-produced ID
184
189
  id = msg.properties()["id"]
185
190
 
186
- print(f"Handling {id}...", flush=True)
191
+ logger.info(f"Handling config request {id}...")
187
192
 
188
193
  resp = await self.config.handle(v)
189
194
 
@@ -214,7 +219,7 @@ class Processor(AsyncProcessor):
214
219
  # Sender-produced ID
215
220
  id = msg.properties()["id"]
216
221
 
217
- print(f"Handling {id}...", flush=True)
222
+ logger.info(f"Handling flow request {id}...")
218
223
 
219
224
  resp = await self.flow.handle(v)
220
225