sdg-hub 0.7.2__py3-none-any.whl → 0.8.0__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.
- sdg_hub/_version.py +2 -2
- sdg_hub/core/__init__.py +13 -1
- sdg_hub/core/blocks/__init__.py +11 -2
- sdg_hub/core/blocks/agent/__init__.py +6 -0
- sdg_hub/core/blocks/agent/agent_block.py +397 -0
- sdg_hub/core/blocks/base.py +4 -1
- sdg_hub/core/blocks/filtering/column_value_filter.py +2 -0
- sdg_hub/core/blocks/llm/__init__.py +3 -2
- sdg_hub/core/blocks/llm/llm_chat_block.py +2 -0
- sdg_hub/core/blocks/llm/{llm_parser_block.py → llm_response_extractor_block.py} +32 -9
- sdg_hub/core/blocks/llm/prompt_builder_block.py +2 -0
- sdg_hub/core/blocks/llm/text_parser_block.py +2 -0
- sdg_hub/core/blocks/transform/duplicate_columns.py +2 -0
- sdg_hub/core/blocks/transform/index_based_mapper.py +2 -0
- sdg_hub/core/blocks/transform/json_structure_block.py +2 -0
- sdg_hub/core/blocks/transform/melt_columns.py +2 -0
- sdg_hub/core/blocks/transform/rename_columns.py +12 -0
- sdg_hub/core/blocks/transform/text_concat.py +2 -0
- sdg_hub/core/blocks/transform/uniform_col_val_setter.py +2 -0
- sdg_hub/core/connectors/__init__.py +46 -0
- sdg_hub/core/connectors/agent/__init__.py +10 -0
- sdg_hub/core/connectors/agent/base.py +233 -0
- sdg_hub/core/connectors/agent/langflow.py +151 -0
- sdg_hub/core/connectors/base.py +99 -0
- sdg_hub/core/connectors/exceptions.py +41 -0
- sdg_hub/core/connectors/http/__init__.py +6 -0
- sdg_hub/core/connectors/http/client.py +150 -0
- sdg_hub/core/connectors/registry.py +112 -0
- sdg_hub/core/flow/base.py +7 -31
- sdg_hub/core/utils/flow_metrics.py +3 -3
- sdg_hub/flows/evaluation/rag/flow.yaml +6 -6
- sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/detailed_summary/flow.yaml +4 -4
- sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/doc_direct_qa/flow.yaml +3 -3
- sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/extractive_summary/flow.yaml +4 -4
- sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/key_facts/flow.yaml +2 -2
- sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/flow.yaml +7 -7
- sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/flow.yaml +7 -7
- sdg_hub/flows/text_analysis/structured_insights/flow.yaml +4 -4
- {sdg_hub-0.7.2.dist-info → sdg_hub-0.8.0.dist-info}/METADATA +2 -2
- {sdg_hub-0.7.2.dist-info → sdg_hub-0.8.0.dist-info}/RECORD +43 -32
- {sdg_hub-0.7.2.dist-info → sdg_hub-0.8.0.dist-info}/WHEEL +1 -1
- {sdg_hub-0.7.2.dist-info → sdg_hub-0.8.0.dist-info}/licenses/LICENSE +0 -0
- {sdg_hub-0.7.2.dist-info → sdg_hub-0.8.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: sdg_hub
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: Synthetic Data Generation
|
|
5
5
|
Author-email: Red Hat AI Innovation <abhandwa@redhat.com>
|
|
6
6
|
License: Apache-2.0
|
|
@@ -26,7 +26,7 @@ Requires-Dist: click<9.0.0,>=8.1.7
|
|
|
26
26
|
Requires-Dist: datasets>=4.0.0
|
|
27
27
|
Requires-Dist: httpx<1.0.0,>=0.25.0
|
|
28
28
|
Requires-Dist: jinja2
|
|
29
|
-
Requires-Dist: litellm<
|
|
29
|
+
Requires-Dist: litellm<2.0.0,>=1.73.0
|
|
30
30
|
Requires-Dist: rich
|
|
31
31
|
Requires-Dist: pandas
|
|
32
32
|
Requires-Dist: pydantic<3.0.0,>=2.0.0
|
|
@@ -1,28 +1,39 @@
|
|
|
1
1
|
sdg_hub/__init__.py,sha256=TlkZT40-70urdcWLqv3kupaJj8s-SVgd2QyvlSFwb4A,510
|
|
2
|
-
sdg_hub/_version.py,sha256=
|
|
2
|
+
sdg_hub/_version.py,sha256=Rttl-BDadtcW1QzGnNffCWA_Wc9mUKDMOBPZp--Mnsc,704
|
|
3
3
|
sdg_hub/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
sdg_hub/core/__init__.py,sha256=
|
|
5
|
-
sdg_hub/core/blocks/__init__.py,sha256=
|
|
6
|
-
sdg_hub/core/blocks/base.py,sha256=
|
|
4
|
+
sdg_hub/core/__init__.py,sha256=puXA9S4n-D9MveT9GhpJ84ACKpAzVmwD32TBX8xR8Z8,719
|
|
5
|
+
sdg_hub/core/blocks/__init__.py,sha256=WXlr-9g47rU6_IDpRFxvsPyImfNEBbhvx5JRi3Z3otY,1048
|
|
6
|
+
sdg_hub/core/blocks/base.py,sha256=LgRGvlMqZrxQYUcS_-9HBN_8FZFY1I3O4SBzh0iOCQc,13201
|
|
7
7
|
sdg_hub/core/blocks/registry.py,sha256=FuEN_pnq-nSH1LguY3_oCubT6Kz3SuJjk3TcUpLT-lw,10695
|
|
8
|
+
sdg_hub/core/blocks/agent/__init__.py,sha256=6Vf64AfzPYL8rBbatPkXYrLjgvq-eyhsp5nOatbm02g,162
|
|
9
|
+
sdg_hub/core/blocks/agent/agent_block.py,sha256=3R9tO3YYtEsNO20vQ_2MjdeqcqlCthxlvXxNhWlIw2U,11942
|
|
8
10
|
sdg_hub/core/blocks/filtering/__init__.py,sha256=isxSVSvDqkMjG8dQSl3Q2M4g5c1t9fTjBSA21icf-yA,275
|
|
9
|
-
sdg_hub/core/blocks/filtering/column_value_filter.py,sha256=
|
|
10
|
-
sdg_hub/core/blocks/llm/__init__.py,sha256=
|
|
11
|
+
sdg_hub/core/blocks/filtering/column_value_filter.py,sha256=nT4vBFvi0Q8KoNvh2LkVWRGRp7HkiiLBcPPOGNZF6ig,6528
|
|
12
|
+
sdg_hub/core/blocks/llm/__init__.py,sha256=GTyXZHNYoiyaajx600ouKIrwAg7aS8QjcgkDlThzbag,805
|
|
11
13
|
sdg_hub/core/blocks/llm/error_handler.py,sha256=7T-019ZFB9qgZoX1ybIiXyaLjPzrF96qcKmUu6vmO6g,12178
|
|
12
|
-
sdg_hub/core/blocks/llm/llm_chat_block.py,sha256=
|
|
13
|
-
sdg_hub/core/blocks/llm/
|
|
14
|
-
sdg_hub/core/blocks/llm/prompt_builder_block.py,sha256=
|
|
15
|
-
sdg_hub/core/blocks/llm/text_parser_block.py,sha256=
|
|
14
|
+
sdg_hub/core/blocks/llm/llm_chat_block.py,sha256=z_vLPrB2e1F4tficBJlTN9vxxnRmBOyOPK6bVFI1SkU,22975
|
|
15
|
+
sdg_hub/core/blocks/llm/llm_response_extractor_block.py,sha256=FiSvAIahi0Tsfy91uMgTd7G2xlDGlOk3EJvQEWGwzu0,12855
|
|
16
|
+
sdg_hub/core/blocks/llm/prompt_builder_block.py,sha256=oJSP5dSxJeva3JML6Yw5WLHxgHuIgw-_ZvFRC4FY5RA,14180
|
|
17
|
+
sdg_hub/core/blocks/llm/text_parser_block.py,sha256=eDND255K3M2JNpAXmXKf4nZZhbypdfHIsnvBinGe8fo,12795
|
|
16
18
|
sdg_hub/core/blocks/transform/__init__.py,sha256=lF9InjOzA6p_mjiwV-a2Kwstq9kqRiQ-dEwbsmR9yQs,825
|
|
17
|
-
sdg_hub/core/blocks/transform/duplicate_columns.py,sha256=
|
|
18
|
-
sdg_hub/core/blocks/transform/index_based_mapper.py,sha256=
|
|
19
|
-
sdg_hub/core/blocks/transform/json_structure_block.py,sha256=
|
|
20
|
-
sdg_hub/core/blocks/transform/melt_columns.py,sha256=
|
|
21
|
-
sdg_hub/core/blocks/transform/rename_columns.py,sha256=
|
|
22
|
-
sdg_hub/core/blocks/transform/text_concat.py,sha256=
|
|
23
|
-
sdg_hub/core/blocks/transform/uniform_col_val_setter.py,sha256=
|
|
19
|
+
sdg_hub/core/blocks/transform/duplicate_columns.py,sha256=vK853XsNh62TAcanK8ioVtkWzmBupF4_v1EQUgfGT10,2872
|
|
20
|
+
sdg_hub/core/blocks/transform/index_based_mapper.py,sha256=yN0i7kxv9Wn5VGWa1INMry6US3K9FS-jrYrb2GP1-BI,8943
|
|
21
|
+
sdg_hub/core/blocks/transform/json_structure_block.py,sha256=vVnKCdE_Qs6bFoLG5mPp6LFXZf0UhucwGj_6r79nhFM,5104
|
|
22
|
+
sdg_hub/core/blocks/transform/melt_columns.py,sha256=a6UjTKizsBP2CX8Opp0FmuembGXUJ8b0NGi5lZjmPm8,4418
|
|
23
|
+
sdg_hub/core/blocks/transform/rename_columns.py,sha256=tvxW9qMM3fJ7vHyxwkfsbcSeTD2eFP1MQfPhQkspA_E,3590
|
|
24
|
+
sdg_hub/core/blocks/transform/text_concat.py,sha256=E4DoRDeIUgWuF-0a1vE8DpxPpBhQGgXW7wDWAKLSKdg,3124
|
|
25
|
+
sdg_hub/core/blocks/transform/uniform_col_val_setter.py,sha256=mqDG5h0p2qfzWFLlxzOCkDQzYgVUVgKW4PLxKtuon3Q,3274
|
|
26
|
+
sdg_hub/core/connectors/__init__.py,sha256=V66HGS2wGVMYRwjrHHIm5JXxIzTwPTpSimCp2SczrCA,1236
|
|
27
|
+
sdg_hub/core/connectors/base.py,sha256=OLeKrd9QYtvqaAIsc4Bm_f1jUv9lblUkvlixjiyw-EY,2794
|
|
28
|
+
sdg_hub/core/connectors/exceptions.py,sha256=4-L9vQzQfCnymjV6l42fNPtfTCFtxIc4R-6aWJ4bwMk,1089
|
|
29
|
+
sdg_hub/core/connectors/registry.py,sha256=U5OQWi2waiGMeSZAhU_LzADtGvFQFttqZaQk0IjH3RQ,2991
|
|
30
|
+
sdg_hub/core/connectors/agent/__init__.py,sha256=5rUo5fPZ7-8TkyRoWSD5XGdZA2i_X8rElgHvZgzyUn8,221
|
|
31
|
+
sdg_hub/core/connectors/agent/base.py,sha256=GtmRCCof-mo0RzXHJYTFZO7Fc0L9HBugQhe7SacCzdo,6964
|
|
32
|
+
sdg_hub/core/connectors/agent/langflow.py,sha256=DJzIjSnkeDJj_oHSxX9R7IqorARiKV4KUKk8pxCdY5I,4348
|
|
33
|
+
sdg_hub/core/connectors/http/__init__.py,sha256=au0vfsWmNJB7UsHFm0Hsc_JvKoPeDTuYC-SdSQJ2VBM,133
|
|
34
|
+
sdg_hub/core/connectors/http/client.py,sha256=0elw5pOr9akocAF2ZNbLLKxc8dy41BP4kSr2tBd7GR8,4782
|
|
24
35
|
sdg_hub/core/flow/__init__.py,sha256=0_m_htuZfPxk8xQ9IKfp0Pz-JRE4O7lYMUFrKyLNoLA,409
|
|
25
|
-
sdg_hub/core/flow/base.py,sha256=
|
|
36
|
+
sdg_hub/core/flow/base.py,sha256=o7OBBH4LkMdJrvYbf3kX6NSAb6U8jQFoRXHKSFHjTEs,58278
|
|
26
37
|
sdg_hub/core/flow/checkpointer.py,sha256=MJay3Q5cfRgJDetk82DaMKJ3ZZUYRHxQabEQTxhGukk,11850
|
|
27
38
|
sdg_hub/core/flow/metadata.py,sha256=cFrpJjWOaK87aCuRFyC3Pdf83oYU93mrmZEMdUnhsN8,10540
|
|
28
39
|
sdg_hub/core/flow/registry.py,sha256=N6KfX-L7QRkooznIFxDuhRZYuDA5g3N5zC-KRm2jVhk,12109
|
|
@@ -32,7 +43,7 @@ sdg_hub/core/utils/datautils.py,sha256=7YzG_IpMHj04zHl-r7mswOd3IzTQKJJdfmMBgm7VX
|
|
|
32
43
|
sdg_hub/core/utils/error_handling.py,sha256=yku8cGj_nKCyXDsnb-mHCpgukkkAMucJ4iAUrIzqysc,5510
|
|
33
44
|
sdg_hub/core/utils/flow_id_words.yaml,sha256=5QHpQdP7zwahRuooyAlJIwBY7WcDR7vtbJXxVJqujbg,2317
|
|
34
45
|
sdg_hub/core/utils/flow_identifier.py,sha256=aAHfK_G9AwEtMglLRMdMpi_AI1dciub5UqBGm4yb2HE,2841
|
|
35
|
-
sdg_hub/core/utils/flow_metrics.py,sha256=
|
|
46
|
+
sdg_hub/core/utils/flow_metrics.py,sha256=6D1o9wWRUcPkYBkrRUesXVXZ0Vf0lMw6D6rSe0_Unl0,12653
|
|
36
47
|
sdg_hub/core/utils/logger_config.py,sha256=6_cnsIHtSAdq1iTTZ7Q7nAJ1dmldlxSZ0AB49yLiQ20,2034
|
|
37
48
|
sdg_hub/core/utils/path_resolution.py,sha256=yWof4kGNpQ5dKcrVHg0h9KfOKLZ6ROjdfsLAZsQT5rM,2000
|
|
38
49
|
sdg_hub/core/utils/time_estimator.py,sha256=rM3_R-Ka5DEtvOtlJoA_5pXSyQ6tT6t4h6qh3_5BCZo,12639
|
|
@@ -41,7 +52,7 @@ sdg_hub/flows/evaluation/rag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
41
52
|
sdg_hub/flows/evaluation/rag/answer_generation.yaml,sha256=dxsHIPyEs14e9fH6JeEJgnrLIV-nLqXmnynj0XF_4os,624
|
|
42
53
|
sdg_hub/flows/evaluation/rag/conceptual_qa_generation.yaml,sha256=cvU8P3EUj9-Cr19Y3ASxkxEBh9ll_NYMC3s6-x1Monc,847
|
|
43
54
|
sdg_hub/flows/evaluation/rag/context_extraction.yaml,sha256=StAAU8yCTzaeGFKieJKFIDRfe21aqk7VIekMH1oEuxA,724
|
|
44
|
-
sdg_hub/flows/evaluation/rag/flow.yaml,sha256=
|
|
55
|
+
sdg_hub/flows/evaluation/rag/flow.yaml,sha256=3HAZaedHPmjn_JWoLzXxHLXurAm9JXxj8pfHB3LNv-4,5342
|
|
45
56
|
sdg_hub/flows/evaluation/rag/groundedness_critic.yaml,sha256=r5zqetGnNvg4UxCuENTzdWhCFbG6TnkY-seDMVRBBko,782
|
|
46
57
|
sdg_hub/flows/evaluation/rag/question_evolution.yaml,sha256=d3G11dQ3Wkgz0JBNyqTi-6QMGIdODOVcGNw1x9OnTEE,649
|
|
47
58
|
sdg_hub/flows/evaluation/rag/topic_generation.yaml,sha256=DhY_Wt7NzzjfirYlQQqABrXn73vMQj9W2XLZZEaofKc,303
|
|
@@ -51,14 +62,14 @@ sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/gener
|
|
|
51
62
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/generate_question_list.yaml,sha256=qHOgUNrQz2vjUjJiEHNGWxDDXwjJlP1kofTxeGgLyPI,1461
|
|
52
63
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/detailed_summary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
64
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/detailed_summary/detailed_summary.yaml,sha256=Ik6gAml0O-jPq8jpXBAkURzYkQuFOnDZb4LDwjmfAiE,381
|
|
54
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/detailed_summary/flow.yaml,sha256=
|
|
65
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/detailed_summary/flow.yaml,sha256=mBdgcG2wipY8uWO6IA-p1kstgzAhroS0Yc2Xou9vSL0,5693
|
|
55
66
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/doc_direct_qa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/doc_direct_qa/flow.yaml,sha256=
|
|
67
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/doc_direct_qa/flow.yaml,sha256=7f423gfJ7qGQHYBo43D4mw0fVs7iAxJYSpuPb0QhYCU,4446
|
|
57
68
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/extractive_summary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
58
69
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/extractive_summary/extractive_summary.yaml,sha256=SeapWoOx3fhN5SvWYuHss_9prLE8xSkOic7JkbDHSR0,4081
|
|
59
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/extractive_summary/flow.yaml,sha256=
|
|
70
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/extractive_summary/flow.yaml,sha256=tzUnZsI5iW8nxT5xRJIKQocUp8wUucQuUOrnh4vJRBM,5861
|
|
60
71
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/key_facts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/key_facts/flow.yaml,sha256=
|
|
72
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/key_facts/flow.yaml,sha256=wuj_aZhW52PyrejIDucWXu8SEel4okMN8wFnol0_Bkc,3352
|
|
62
73
|
sdg_hub/flows/qa_generation/document_grounded_qa/enhanced_multi_summary_qa/key_facts/key_facts_summary.yaml,sha256=YKMX_CuvcThG_bdNCAIXdVBkMvB72I89RGq2ltSSgc8,3298
|
|
63
74
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
75
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -68,24 +79,24 @@ sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/ev
|
|
|
68
79
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/evaluate_question.yaml,sha256=zwzklXup6khRkR88avgrJTcjaMcV1wnbeYaML5oPuNs,1767
|
|
69
80
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/evaluate_relevancy.yaml,sha256=cA8igo7jMrRXaWW6k0of6KOp7YnxLtPj0fP4DbrmZNQ,3647
|
|
70
81
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/extractive_summary.yaml,sha256=fcMV7LaCFZo4D29nwhGJXqFFuZMYVLo9XYjv8zcU6zs,364
|
|
71
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/flow.yaml,sha256=
|
|
82
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/flow.yaml,sha256=BcNO79qG4L4A0BLtiV0bwn9mFkapRtZD3PjIHCf44yI,9253
|
|
72
83
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/instructlab/generate_questions_responses.yaml,sha256=yX8aLY8dJSDML9ZJhnj9RzPbN8tH2xfcM4Gc6xZuwqQ,2596
|
|
73
84
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/README.md,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
85
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
75
86
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/atomic_facts_ja.yaml,sha256=OjPZaSCOSLxEWgW3pmNwF7mmLhGhFGTmKL_3rKdqeW4,2488
|
|
76
87
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/detailed_summary_ja.yaml,sha256=nEy_RcotHGiiENrmUANpKkbIFsrARAeSwECrBeHi2so,391
|
|
77
88
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/extractive_summary_ja.yaml,sha256=V90W0IeJQZTFThA8v0UOs3DtZbtU3BI9jkpChw1BULo,402
|
|
78
|
-
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/flow.yaml,sha256=
|
|
89
|
+
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/flow.yaml,sha256=u9rNPWlTjH7qDvq7FO9fjgNLkOAV9_WNVHKpjKbl-ao,9389
|
|
79
90
|
sdg_hub/flows/qa_generation/document_grounded_qa/multi_summary_qa/multilingual/japanese/generate_questions_responses_ja.yaml,sha256=96SQqXG7fmb-50SdX85sgVtrFcQ-oNKe_0BoQdZmY5g,2638
|
|
80
91
|
sdg_hub/flows/text_analysis/__init__.py,sha256=WStks4eM_KHNTVsHglcj8vFghmI0PH9P1hUrijBLbwc,125
|
|
81
92
|
sdg_hub/flows/text_analysis/structured_insights/__init__.py,sha256=_DT4NR05JD9CZoSWROPr2lC6se0VjSqQPZJJlEV79mk,274
|
|
82
93
|
sdg_hub/flows/text_analysis/structured_insights/analyze_sentiment.yaml,sha256=1YGPypFJYS8qfYFj2J6ERTgodKJvMF4YHNGt_vOF5qc,1000
|
|
83
94
|
sdg_hub/flows/text_analysis/structured_insights/extract_entities.yaml,sha256=Q_SDy14Zu-qS2sbKfUBmGlYj3k7CUg6HzzXlFCXRKuU,1169
|
|
84
95
|
sdg_hub/flows/text_analysis/structured_insights/extract_keywords.yaml,sha256=_nPPMdHnxag_lYbhYUjGJGo-CvRwWvwdGX7cQhdZ1S0,847
|
|
85
|
-
sdg_hub/flows/text_analysis/structured_insights/flow.yaml,sha256=
|
|
96
|
+
sdg_hub/flows/text_analysis/structured_insights/flow.yaml,sha256=E9bx5QvmIwm69KITVwZFgwlwe33nhYbVRPRwrMrD8Xw,4978
|
|
86
97
|
sdg_hub/flows/text_analysis/structured_insights/summarize.yaml,sha256=WXwQak1pF8e1OwnOoI1EHu8QB6iUNW89rfkTdi1Oq54,687
|
|
87
|
-
sdg_hub-0.
|
|
88
|
-
sdg_hub-0.
|
|
89
|
-
sdg_hub-0.
|
|
90
|
-
sdg_hub-0.
|
|
91
|
-
sdg_hub-0.
|
|
98
|
+
sdg_hub-0.8.0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
99
|
+
sdg_hub-0.8.0.dist-info/METADATA,sha256=yC_UNI988aCntR3Kf-YcRMpqhCixp9j0boYFeBMlqOo,9614
|
|
100
|
+
sdg_hub-0.8.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
101
|
+
sdg_hub-0.8.0.dist-info/top_level.txt,sha256=TqI7d-HE1n6zkXFkU0nF3A1Ct0P0pBaqI675uFokhx4,8
|
|
102
|
+
sdg_hub-0.8.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|