semantic-kernel 0.3.0.dev0__py3-none-any.whl → 0.3.2.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.
- semantic_kernel/__init__.py +2 -0
- semantic_kernel/connectors/ai/chat_completion_client_base.py +26 -2
- semantic_kernel/connectors/ai/chat_request_settings.py +2 -0
- semantic_kernel/connectors/ai/complete_request_settings.py +1 -0
- semantic_kernel/connectors/ai/hugging_face/services/hf_text_completion.py +43 -18
- semantic_kernel/connectors/ai/open_ai/services/open_ai_chat_completion.py +48 -14
- semantic_kernel/connectors/ai/open_ai/services/open_ai_text_completion.py +16 -11
- semantic_kernel/connectors/ai/text_completion_client_base.py +24 -2
- semantic_kernel/connectors/memory/chroma/chroma_memory_store.py +8 -5
- semantic_kernel/connectors/memory/chroma/utils.py +45 -22
- semantic_kernel/connectors/memory/pinecone/__init__.py +7 -0
- semantic_kernel/connectors/memory/pinecone/pinecone_memory_store.py +401 -0
- semantic_kernel/connectors/memory/pinecone/utils.py +37 -0
- semantic_kernel/connectors/memory/{weaviate_memory_store.py → weaviate/weaviate_memory_store.py} +30 -15
- semantic_kernel/core_skills/file_io_skill.py +1 -1
- semantic_kernel/core_skills/math_skill.py +1 -1
- semantic_kernel/core_skills/text_skill.py +1 -1
- semantic_kernel/core_skills/time_skill.py +15 -3
- semantic_kernel/core_skills/wait_skill.py +23 -0
- semantic_kernel/kernel.py +2 -0
- semantic_kernel/memory/memory_query_result.py +4 -0
- semantic_kernel/memory/memory_record.py +15 -2
- semantic_kernel/memory/null_memory.py +7 -1
- semantic_kernel/memory/semantic_text_memory.py +17 -6
- semantic_kernel/memory/semantic_text_memory_base.py +2 -0
- semantic_kernel/orchestration/sk_function.py +5 -0
- semantic_kernel/planning/basic_planner.py +9 -1
- semantic_kernel/semantic_functions/prompt_template_config.py +6 -0
- semantic_kernel/skill_definition/functions_view.py +14 -1
- semantic_kernel/text/text_chunker.py +152 -69
- semantic_kernel/utils/settings.py +36 -31
- {semantic_kernel-0.3.0.dev0.dist-info → semantic_kernel-0.3.2.dev0.dist-info}/METADATA +3 -1
- {semantic_kernel-0.3.0.dev0.dist-info → semantic_kernel-0.3.2.dev0.dist-info}/RECORD +34 -30
- {semantic_kernel-0.3.0.dev0.dist-info → semantic_kernel-0.3.2.dev0.dist-info}/WHEEL +0 -0
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
from typing import Optional, Tuple
|
|
4
4
|
|
|
5
|
+
from dotenv import dotenv_values
|
|
6
|
+
|
|
5
7
|
|
|
6
8
|
def openai_settings_from_dot_env() -> Tuple[str, Optional[str]]:
|
|
7
9
|
"""
|
|
@@ -11,20 +13,9 @@ def openai_settings_from_dot_env() -> Tuple[str, Optional[str]]:
|
|
|
11
13
|
Tuple[str, str]: The OpenAI API key, the OpenAI organization ID
|
|
12
14
|
"""
|
|
13
15
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
for line in lines:
|
|
19
|
-
if line.startswith("OPENAI_API_KEY"):
|
|
20
|
-
parts = line.split("=")[1:]
|
|
21
|
-
api_key = "=".join(parts).strip().strip('"')
|
|
22
|
-
continue
|
|
23
|
-
|
|
24
|
-
if line.startswith("OPENAI_ORG_ID"):
|
|
25
|
-
parts = line.split("=")[1:]
|
|
26
|
-
org_id = "=".join(parts).strip().strip('"')
|
|
27
|
-
continue
|
|
16
|
+
config = dotenv_values(".env")
|
|
17
|
+
api_key = config.get("OPENAI_API_KEY", None)
|
|
18
|
+
org_id = config.get("OPENAI_ORG_ID", None)
|
|
28
19
|
|
|
29
20
|
assert api_key is not None, "OpenAI API key not found in .env file"
|
|
30
21
|
|
|
@@ -42,32 +33,46 @@ def azure_openai_settings_from_dot_env(include_deployment=True) -> Tuple[str, st
|
|
|
42
33
|
"""
|
|
43
34
|
|
|
44
35
|
deployment, api_key, endpoint = None, None, None
|
|
36
|
+
config = dotenv_values(".env")
|
|
37
|
+
deployment = config.get("AZURE_OPENAI_DEPLOYMENT_NAME", None)
|
|
38
|
+
api_key = config.get("AZURE_OPENAI_API_KEY", None)
|
|
39
|
+
endpoint = config.get("AZURE_OPENAI_ENDPOINT", None)
|
|
40
|
+
|
|
41
|
+
# Azure requires the deployment name, the API key and the endpoint URL.
|
|
42
|
+
if include_deployment:
|
|
43
|
+
assert (
|
|
44
|
+
deployment is not None
|
|
45
|
+
), "Azure OpenAI deployment name not found in .env file"
|
|
46
|
+
|
|
47
|
+
assert api_key is not None, "Azure OpenAI API key not found in .env file"
|
|
48
|
+
assert endpoint is not None, "Azure OpenAI endpoint not found in .env file"
|
|
49
|
+
|
|
50
|
+
return deployment or "", api_key, endpoint
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def pinecone_settings_from_dot_env() -> Tuple[str, Optional[str]]:
|
|
54
|
+
"""
|
|
55
|
+
Reads the Pinecone API key and Environment from the .env file.
|
|
56
|
+
Returns:
|
|
57
|
+
Tuple[str, str]: The Pinecone API key, the Pinecone Environment
|
|
58
|
+
"""
|
|
59
|
+
|
|
60
|
+
api_key, environment = None, None
|
|
45
61
|
with open(".env", "r") as f:
|
|
46
62
|
lines = f.readlines()
|
|
47
63
|
|
|
48
64
|
for line in lines:
|
|
49
|
-
if
|
|
50
|
-
parts = line.split("=")[1:]
|
|
51
|
-
deployment = "=".join(parts).strip().strip('"')
|
|
52
|
-
continue
|
|
53
|
-
|
|
54
|
-
if line.startswith("AZURE_OPENAI_API_KEY"):
|
|
65
|
+
if line.startswith("PINECONE_API_KEY"):
|
|
55
66
|
parts = line.split("=")[1:]
|
|
56
67
|
api_key = "=".join(parts).strip().strip('"')
|
|
57
68
|
continue
|
|
58
69
|
|
|
59
|
-
if line.startswith("
|
|
70
|
+
if line.startswith("PINECONE_ENVIRONMENT"):
|
|
60
71
|
parts = line.split("=")[1:]
|
|
61
|
-
|
|
72
|
+
environment = "=".join(parts).strip().strip('"')
|
|
62
73
|
continue
|
|
63
74
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
assert (
|
|
67
|
-
deployment is not None
|
|
68
|
-
), "Azure OpenAI deployment name not found in .env file"
|
|
69
|
-
|
|
70
|
-
assert api_key is not None, "Azure OpenAI API key not found in .env file"
|
|
71
|
-
assert endpoint is not None, "Azure OpenAI endpoint not found in .env file"
|
|
75
|
+
assert api_key is not None, "Pinecone API key not found in .env file"
|
|
76
|
+
assert environment is not None, "Pinecone environment not found in .env file"
|
|
72
77
|
|
|
73
|
-
return
|
|
78
|
+
return api_key, environment
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: semantic-kernel
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2.dev0
|
|
4
4
|
Summary:
|
|
5
5
|
Author: Microsoft
|
|
6
6
|
Author-email: SK-Support@microsoft.com
|
|
@@ -13,6 +13,8 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
13
13
|
Requires-Dist: aiofiles (>=23.1.0,<24.0.0)
|
|
14
14
|
Requires-Dist: numpy (>=1.24.2,<2.0.0)
|
|
15
15
|
Requires-Dist: openai (>=0.27.0,<0.28.0)
|
|
16
|
+
Requires-Dist: python-dotenv (==1.0.0)
|
|
17
|
+
Requires-Dist: regex (>=2023.6.3,<2024.0.0)
|
|
16
18
|
Description-Content-Type: text/markdown
|
|
17
19
|
|
|
18
20
|
# About Semantic Kernel
|
|
@@ -1,63 +1,67 @@
|
|
|
1
|
-
semantic_kernel/__init__.py,sha256=
|
|
1
|
+
semantic_kernel/__init__.py,sha256=gwzvtk0pg97DF8KCDQhFjXWmRp7hOcJpXcQS2Pq-Ya8,1301
|
|
2
2
|
semantic_kernel/connectors/ai/__init__.py,sha256=bAjay0OPIe0msEC7KZXAHhs60_LNCBMfc6bPFNV4elY,719
|
|
3
3
|
semantic_kernel/connectors/ai/ai_exception.py,sha256=L_Cc_YTIbveXSOXQ8BbSjnjgLCxBz9297akNfX6EsGo,1647
|
|
4
|
-
semantic_kernel/connectors/ai/chat_completion_client_base.py,sha256=
|
|
5
|
-
semantic_kernel/connectors/ai/chat_request_settings.py,sha256=
|
|
6
|
-
semantic_kernel/connectors/ai/complete_request_settings.py,sha256=
|
|
4
|
+
semantic_kernel/connectors/ai/chat_completion_client_base.py,sha256=XDt5xnJ4NfFAQiSQOm43EBSTN0KDew7-UASBi6874Sw,1792
|
|
5
|
+
semantic_kernel/connectors/ai/chat_request_settings.py,sha256=abIdupSr4-OSvz2KUBGQ8eAkK9oufiXNkil-KXtg4wE,1235
|
|
6
|
+
semantic_kernel/connectors/ai/complete_request_settings.py,sha256=VzK-JzOYyrWZXGuuGgiBWy3nC3b0_pUGwSK1Ha6il-0,1405
|
|
7
7
|
semantic_kernel/connectors/ai/embeddings/embedding_generator_base.py,sha256=TjWr4gf-SUBLBVCgF3ekFEs8dPHLAKzUWZ5WVTucdfk,282
|
|
8
8
|
semantic_kernel/connectors/ai/hugging_face/__init__.py,sha256=-QjM630BtqkYKXYnuuCj0rHAtvi2y1PxfShIwpEfbIk,352
|
|
9
|
-
semantic_kernel/connectors/ai/hugging_face/services/hf_text_completion.py,sha256=
|
|
9
|
+
semantic_kernel/connectors/ai/hugging_face/services/hf_text_completion.py,sha256=FV5TpY6C1rZ8JHsR5O1EvEXEysAUyMvGL-5XkRKDni4,6161
|
|
10
10
|
semantic_kernel/connectors/ai/hugging_face/services/hf_text_embedding.py,sha256=qMDCSzlZZUP8UNcQZt1ChyP8E-Z6nUDZmTh-uT1hqXE,2317
|
|
11
11
|
semantic_kernel/connectors/ai/open_ai/__init__.py,sha256=R2DKk3sI0QoVHReuJbuAKbeBBAcLeTcyD_ZNrYT5irk,892
|
|
12
12
|
semantic_kernel/connectors/ai/open_ai/services/azure_chat_completion.py,sha256=QIg4xUY2ZY43QmdKhKXe5iWOt_uaWa2sGNKc57ahunE,2615
|
|
13
13
|
semantic_kernel/connectors/ai/open_ai/services/azure_text_completion.py,sha256=blKLcBsQ6kIyLcD2deCLJ9EhAN-K55fjdG5vU86BJCs,2607
|
|
14
14
|
semantic_kernel/connectors/ai/open_ai/services/azure_text_embedding.py,sha256=IXEPCObOXZ6UN4-5X8CxIbQNU8zN-a1oIyZRbACbsyc,2602
|
|
15
|
-
semantic_kernel/connectors/ai/open_ai/services/open_ai_chat_completion.py,sha256=
|
|
16
|
-
semantic_kernel/connectors/ai/open_ai/services/open_ai_text_completion.py,sha256=
|
|
15
|
+
semantic_kernel/connectors/ai/open_ai/services/open_ai_chat_completion.py,sha256=I0ey2Iknbh9WVVvoAGm5NMNmfWlvcDh5JV3ISraJKSU,8467
|
|
16
|
+
semantic_kernel/connectors/ai/open_ai/services/open_ai_text_completion.py,sha256=ckkSzlXhyp1GSuZBSsVYggZpnM_FnaixM1H4dP5YxPk,5504
|
|
17
17
|
semantic_kernel/connectors/ai/open_ai/services/open_ai_text_embedding.py,sha256=TwUcfFO3JoUPI2N6w0T8Q2d0P7JvIS9AAAo9PtgtB84,2723
|
|
18
|
-
semantic_kernel/connectors/ai/text_completion_client_base.py,sha256=
|
|
18
|
+
semantic_kernel/connectors/ai/text_completion_client_base.py,sha256=OcrlKdaGMmbKKPL6vh1HD2_mbcFhpuYlAZQ7t01eNrg,1616
|
|
19
19
|
semantic_kernel/connectors/memory/chroma/__init__.py,sha256=RaRPjGI_12W5nKiJJiICoOXpk_VW35cIrUafKoNf1GY,182
|
|
20
|
-
semantic_kernel/connectors/memory/chroma/chroma_memory_store.py,sha256=
|
|
21
|
-
semantic_kernel/connectors/memory/chroma/utils.py,sha256=
|
|
22
|
-
semantic_kernel/connectors/memory/
|
|
20
|
+
semantic_kernel/connectors/memory/chroma/chroma_memory_store.py,sha256=cWqVJRCYq7RPm432yryazvKisGfMdgYTF2RS-lFllRo,15268
|
|
21
|
+
semantic_kernel/connectors/memory/chroma/utils.py,sha256=GJ5ucf-uoRV0egxd-A4217fNcC4K1wbaIBt3PCGckIU,4402
|
|
22
|
+
semantic_kernel/connectors/memory/pinecone/__init__.py,sha256=WXbdKNffNnpnPQJIWpnFKNfOm6xvdsEDAQRh78HAwS4,190
|
|
23
|
+
semantic_kernel/connectors/memory/pinecone/pinecone_memory_store.py,sha256=DA9r7DNEl2hSyiO_-aTBsp-dT03LGE27JKzKDnlWNUg,14867
|
|
24
|
+
semantic_kernel/connectors/memory/pinecone/utils.py,sha256=1_95RN1uSJR2XJLVz9VFf_M7eXJfmlvKNwPaVjTUAtE,1154
|
|
25
|
+
semantic_kernel/connectors/memory/weaviate/weaviate_memory_store.py,sha256=qnKv1E86ryRViIspOmH90XalIlcQO4ry8R-kDqBR9iE,11295
|
|
23
26
|
semantic_kernel/core_skills/__init__.py,sha256=AenNDbd4uTq3cUJlzegnrF2E8wgnrOxhvYp-hb3pBGA,691
|
|
24
27
|
semantic_kernel/core_skills/conversation_summary_skill.py,sha256=Z8IcUvJvn63ZTRzYukZ10HlKBl_HeOWep43CFNcO6vk,2510
|
|
25
|
-
semantic_kernel/core_skills/file_io_skill.py,sha256=
|
|
28
|
+
semantic_kernel/core_skills/file_io_skill.py,sha256=w7xTFB-Ai_x6aNc0uxsBGa5e2MCHCg5mscUIh_jww1E,2082
|
|
26
29
|
semantic_kernel/core_skills/http_skill.py,sha256=ferr2_4x5mMfUj-FHjLRCdtHLOlMBsTx4H03g4o1V4I,3754
|
|
27
|
-
semantic_kernel/core_skills/math_skill.py,sha256=
|
|
30
|
+
semantic_kernel/core_skills/math_skill.py,sha256=DbqEJutEFoBAyo341e5C_uhgEZ9wh5ump3zxkKZ2bxk,3171
|
|
28
31
|
semantic_kernel/core_skills/text_memory_skill.py,sha256=LSv6G2rE-Zhhym_ry9oyUQJxeiYAI3okBU_kEpz4VoM,4641
|
|
29
|
-
semantic_kernel/core_skills/text_skill.py,sha256=
|
|
30
|
-
semantic_kernel/core_skills/time_skill.py,sha256=
|
|
31
|
-
semantic_kernel/
|
|
32
|
+
semantic_kernel/core_skills/text_skill.py,sha256=3l2rfmcq_6wF4fUI2oe6v4FPjDM2IRG7hxsSGhMo7U8,2413
|
|
33
|
+
semantic_kernel/core_skills/time_skill.py,sha256=1wwbzsloYkYTdko-Rum_qx4qoSHGVKsLfI6ZKVVmhKQ,7860
|
|
34
|
+
semantic_kernel/core_skills/wait_skill.py,sha256=qsmFjqN3wu8-J2tRqMR72L0L0Qvmx2QrI79GdkXQlvQ,629
|
|
35
|
+
semantic_kernel/kernel.py,sha256=l0ddrhsaJc048gfXw0pgxtCV-rAgLLCFPUHLAyUhMPU,27810
|
|
32
36
|
semantic_kernel/kernel_exception.py,sha256=HpUGXGHndLzV1d1QxED3UEQQAHuc46r6XyBNDjT92es,1626
|
|
33
37
|
semantic_kernel/memory/__init__.py,sha256=S67WhFdqzVoXcIHWDZ1_zKtEn50_iBqpX6W2Y1LCB34,160
|
|
34
|
-
semantic_kernel/memory/memory_query_result.py,sha256=
|
|
35
|
-
semantic_kernel/memory/memory_record.py,sha256=
|
|
38
|
+
semantic_kernel/memory/memory_query_result.py,sha256=N7NhYUzFkEzI3PiK7Z68NbRLUTH_8yvtNfp9PIMw2_0,2544
|
|
39
|
+
semantic_kernel/memory/memory_record.py,sha256=6x-nUnsCdjL1Zlu8UVSBImwSWel8CtFjv29UbNmdRNg,3708
|
|
36
40
|
semantic_kernel/memory/memory_store_base.py,sha256=m_ANNYDGBavU8XAZUClUqqKtUZtsh3WziSU3BCFJNZM,2014
|
|
37
|
-
semantic_kernel/memory/null_memory.py,sha256=
|
|
38
|
-
semantic_kernel/memory/semantic_text_memory.py,sha256=
|
|
39
|
-
semantic_kernel/memory/semantic_text_memory_base.py,sha256
|
|
41
|
+
semantic_kernel/memory/null_memory.py,sha256=H6hJ6YaE8fWS-PbrVY0GujrRo_pN2B6ML1ldXntZSfA,1272
|
|
42
|
+
semantic_kernel/memory/semantic_text_memory.py,sha256=51Ua7RUHDwxLBlkAIR5qdkQRGpeRk-TfEb8JpcGsbpY,6354
|
|
43
|
+
semantic_kernel/memory/semantic_text_memory_base.py,sha256=szMDf2Z67ExXo2y0P9DN-eApwhwuwfYBO6tIUExN3-E,1298
|
|
40
44
|
semantic_kernel/memory/volatile_memory_store.py,sha256=7W0lFa_UeFae7hnhAheezP_9eA_kNCdrjz5O4N4um80,12032
|
|
41
45
|
semantic_kernel/orchestration/context_variables.py,sha256=sNGrZPxZQXE3pGVoahjYqb5BZ49WFvyBDpMwI-VWT0Q,2361
|
|
42
46
|
semantic_kernel/orchestration/delegate_handlers.py,sha256=uyZsiPr5v-UphQXwsH1ftqbJxPCigXoqMsrY2m9VVjQ,5079
|
|
43
47
|
semantic_kernel/orchestration/delegate_inference.py,sha256=LuPB_ojC57jK8ABigNeja3h-D5AlwurMdnW6_E86ddc,9005
|
|
44
48
|
semantic_kernel/orchestration/delegate_types.py,sha256=ZcnZCMtyrZMj7r8y6cPom3IuD0sHa4KQPucdZHpQsKE,638
|
|
45
49
|
semantic_kernel/orchestration/sk_context.py,sha256=DZl_ucEtGjKqbOZYWgSRn9-FMLzhDJbli5Cqv3PMlIg,7514
|
|
46
|
-
semantic_kernel/orchestration/sk_function.py,sha256=
|
|
50
|
+
semantic_kernel/orchestration/sk_function.py,sha256=mcdK1u5aS1lxiSjESYi8dJeKPF2ZTvufwAWkMctOIbo,16088
|
|
47
51
|
semantic_kernel/orchestration/sk_function_base.py,sha256=oSADu3xi7foDHGSbo156Lvm0iJnSAv0VTLNhYZkbuFA,6158
|
|
48
52
|
semantic_kernel/planning/__init__.py,sha256=UjJfBw-c9vEeDNI_SsYM72P-lt5YLPgjbvcjMtvASyM,158
|
|
49
|
-
semantic_kernel/planning/basic_planner.py,sha256=
|
|
53
|
+
semantic_kernel/planning/basic_planner.py,sha256=KAj25xDZqSGXao1aau3RZd9fmI_fhXZaySTz0HGHcps,7538
|
|
50
54
|
semantic_kernel/planning/plan.py,sha256=ha-J2l5rLAiYMvsM_uJkbIwN4_EjTqaPVnV5P2_w5fg,396
|
|
51
55
|
semantic_kernel/reliability/pass_through_without_retry.py,sha256=OI2nBJFdtmGUgV-A1iO5h3bOUZABYsMZ3ypcpsq0Crk,932
|
|
52
56
|
semantic_kernel/reliability/retry_mechanism_base.py,sha256=Xph0uxY7bb19t7STNZIadrz67-NV5HzGb6ewA52HXms,694
|
|
53
57
|
semantic_kernel/semantic_functions/chat_prompt_template.py,sha256=lZF02xYXuZNtRVAZ4h2DYN_le-kNow2RhXWQnLD1UU4,2101
|
|
54
58
|
semantic_kernel/semantic_functions/prompt_template.py,sha256=7qzsY_3Yyf3sqUM7XuMw35PlX-N7Feqqw24b5-3Ek0A,2332
|
|
55
59
|
semantic_kernel/semantic_functions/prompt_template_base.py,sha256=y_pG7LtwbSsdWTikxUQNApAscIJtB0S_E53-WMk-JVQ,506
|
|
56
|
-
semantic_kernel/semantic_functions/prompt_template_config.py,sha256=
|
|
60
|
+
semantic_kernel/semantic_functions/prompt_template_config.py,sha256=wrv8gOrwBDpiBamefKNLmtKX0seZmmTnBEAXcxsvo-Y,4525
|
|
57
61
|
semantic_kernel/semantic_functions/semantic_function_config.py,sha256=buON4ZVTHBQQSVOJ1AVEIZtONqgVJFH1tXeiVkFip1Q,671
|
|
58
62
|
semantic_kernel/skill_definition/__init__.py,sha256=rEhtQBLH1L-OMTailF4yORbOKzSUudA5F1fZSSjPYgw,322
|
|
59
63
|
semantic_kernel/skill_definition/function_view.py,sha256=YFj7mhTI2OMv2QcxMEABMW7C6RrgKv-iadmZQLkZQqo,2053
|
|
60
|
-
semantic_kernel/skill_definition/functions_view.py,sha256=
|
|
64
|
+
semantic_kernel/skill_definition/functions_view.py,sha256=fc_tVCnvVApBWVBizS0_dQn9XGYBWzVe3nCnmCvI_Ys,2199
|
|
61
65
|
semantic_kernel/skill_definition/parameter_view.py,sha256=r_59E8vLdP8AzC7WOG-2vPl1tcuIBqLTQTtOKK6nRVI,1026
|
|
62
66
|
semantic_kernel/skill_definition/read_only_skill_collection.py,sha256=5WJLdFRDFaY5YgDEy2oQwSvkMJ-mClJmbI5g3_3uGIQ,2104
|
|
63
67
|
semantic_kernel/skill_definition/read_only_skill_collection_base.py,sha256=x69TPYDja0Eu2KQTcCqdxb_cVmbakxBUhp1Qo1b5GII,1345
|
|
@@ -82,11 +86,11 @@ semantic_kernel/template_engine/protocols/text_renderer.py,sha256=9tr0wF6TilL5Zm
|
|
|
82
86
|
semantic_kernel/template_engine/template_tokenizer.py,sha256=IfnnsN6u43ks0RuM6eyNmlzGPU8r9VsCWsmY0eTOva4,7637
|
|
83
87
|
semantic_kernel/text/__init__.py,sha256=lOLUtteokw8bUV4ZckhI3VHa4Z0YxDa4baPzAb4ZpFk,473
|
|
84
88
|
semantic_kernel/text/function_extension.py,sha256=Qv9fHLSjOswJY1bve52hJ42G-ZfsmZiZ6Yyz1fcMUI4,667
|
|
85
|
-
semantic_kernel/text/text_chunker.py,sha256=
|
|
89
|
+
semantic_kernel/text/text_chunker.py,sha256=iu2fdi2eeVdPJiB86j4JXz8b8Q2hDWPWv684f4X3iVk,8440
|
|
86
90
|
semantic_kernel/utils/null_logger.py,sha256=DSEc9sUhmhPq2PHw8ClA8p_cyETMVmghhaKbzMcRe1w,403
|
|
87
|
-
semantic_kernel/utils/settings.py,sha256=
|
|
91
|
+
semantic_kernel/utils/settings.py,sha256=1r3QHoUVDPxlou4dY3vazJQ6kbvtnr2m5nVdv26_6Tw,2574
|
|
88
92
|
semantic_kernel/utils/static_property.py,sha256=Yx0skR7C6-7tPG47rB_T5dteYmKxGVLksKcGinwBRFI,221
|
|
89
93
|
semantic_kernel/utils/validation.py,sha256=vo3Xuvj0P9FlGZeQZYbcSwcQI19w7b8KyJ2QgWbAchY,2198
|
|
90
|
-
semantic_kernel-0.3.
|
|
91
|
-
semantic_kernel-0.3.
|
|
92
|
-
semantic_kernel-0.3.
|
|
94
|
+
semantic_kernel-0.3.2.dev0.dist-info/METADATA,sha256=Apuh_HoGeMxAtKac-D-OQ5ZEy4nDNe2tthiD0MJ1pPE,1843
|
|
95
|
+
semantic_kernel-0.3.2.dev0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
96
|
+
semantic_kernel-0.3.2.dev0.dist-info/RECORD,,
|
|
File without changes
|