win32more-Microsoft.WindowsAppSDK 0.7.1.8.250907003__py2.py3-none-any.whl → 0.7.1.8.250916003__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of win32more-Microsoft.WindowsAppSDK might be problematic. Click here for more details.
- win32more/Microsoft/Windows/AI/MachineLearning/__init__.py +122 -0
- win32more/Microsoft/Windows/AI/Text/__init__.py +60 -0
- win32more/appsdk/versioninfo.py +1 -1
- {win32more_microsoft_windowsappsdk-0.7.1.8.250907003.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/METADATA +1 -1
- {win32more_microsoft_windowsappsdk-0.7.1.8.250907003.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/RECORD +7 -6
- {win32more_microsoft_windowsappsdk-0.7.1.8.250907003.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/WHEEL +0 -0
- {win32more_microsoft_windowsappsdk-0.7.1.8.250907003.dist-info → win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info}/licenses/LICENSE (Microsoft.WindowsAppSDK).txt +0 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
from win32more._prelude import *
|
|
3
|
+
import win32more.Microsoft.Windows.AI.MachineLearning
|
|
4
|
+
import win32more.Windows.ApplicationModel
|
|
5
|
+
import win32more.Windows.Foundation
|
|
6
|
+
import win32more.Windows.Foundation.Collections
|
|
7
|
+
class ExecutionProvider(ComPtr):
|
|
8
|
+
extends: IInspectable
|
|
9
|
+
default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider
|
|
10
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProvider'
|
|
11
|
+
@winrt_mixinmethod
|
|
12
|
+
def get_Name(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> hstr: ...
|
|
13
|
+
@winrt_mixinmethod
|
|
14
|
+
def get_LibraryPath(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> hstr: ...
|
|
15
|
+
@winrt_mixinmethod
|
|
16
|
+
def get_PackageId(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Windows.ApplicationModel.PackageId: ...
|
|
17
|
+
@winrt_mixinmethod
|
|
18
|
+
def get_ReadyState(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyState: ...
|
|
19
|
+
@winrt_mixinmethod
|
|
20
|
+
def get_Certification(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCertification: ...
|
|
21
|
+
@winrt_mixinmethod
|
|
22
|
+
def EnsureReadyAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult, Double]: ...
|
|
23
|
+
@winrt_mixinmethod
|
|
24
|
+
def TryRegister(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProvider) -> Boolean: ...
|
|
25
|
+
Certification = property(get_Certification, None)
|
|
26
|
+
LibraryPath = property(get_LibraryPath, None)
|
|
27
|
+
Name = property(get_Name, None)
|
|
28
|
+
PackageId = property(get_PackageId, None)
|
|
29
|
+
ReadyState = property(get_ReadyState, None)
|
|
30
|
+
class ExecutionProviderCatalog(ComPtr):
|
|
31
|
+
extends: IInspectable
|
|
32
|
+
default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog
|
|
33
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog'
|
|
34
|
+
@winrt_mixinmethod
|
|
35
|
+
def FindAllProviders(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> ReceiveArray[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider]: ...
|
|
36
|
+
@winrt_mixinmethod
|
|
37
|
+
def EnsureAndRegisterCertifiedAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
|
|
38
|
+
@winrt_mixinmethod
|
|
39
|
+
def RegisterCertifiedAsync(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
|
|
40
|
+
@winrt_classmethod
|
|
41
|
+
def GetDefault(cls: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalogStatics) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog: ...
|
|
42
|
+
class ExecutionProviderCertification(Enum, Int32):
|
|
43
|
+
Unknown = 0
|
|
44
|
+
Certified = 1
|
|
45
|
+
Uncertified = 2
|
|
46
|
+
class ExecutionProviderReadyResult(ComPtr):
|
|
47
|
+
extends: IInspectable
|
|
48
|
+
default_interface: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult
|
|
49
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult'
|
|
50
|
+
@winrt_mixinmethod
|
|
51
|
+
def get_Status(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResultState: ...
|
|
52
|
+
@winrt_mixinmethod
|
|
53
|
+
def get_ExtendedError(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> win32more.Windows.Foundation.HResult: ...
|
|
54
|
+
@winrt_mixinmethod
|
|
55
|
+
def get_DiagnosticText(self: win32more.Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult) -> hstr: ...
|
|
56
|
+
DiagnosticText = property(get_DiagnosticText, None)
|
|
57
|
+
ExtendedError = property(get_ExtendedError, None)
|
|
58
|
+
Status = property(get_Status, None)
|
|
59
|
+
class ExecutionProviderReadyResultState(Enum, Int32):
|
|
60
|
+
InProgress = 0
|
|
61
|
+
Success = 1
|
|
62
|
+
Failure = 2
|
|
63
|
+
class ExecutionProviderReadyState(Enum, Int32):
|
|
64
|
+
Ready = 0
|
|
65
|
+
NotReady = 1
|
|
66
|
+
NotPresent = 2
|
|
67
|
+
class IExecutionProvider(ComPtr):
|
|
68
|
+
extends: IInspectable
|
|
69
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProvider'
|
|
70
|
+
_iid_ = Guid('{98356468-cf23-504f-b29c-9347781925ff}')
|
|
71
|
+
@winrt_commethod(6)
|
|
72
|
+
def get_Name(self) -> hstr: ...
|
|
73
|
+
@winrt_commethod(7)
|
|
74
|
+
def get_LibraryPath(self) -> hstr: ...
|
|
75
|
+
@winrt_commethod(8)
|
|
76
|
+
def get_PackageId(self) -> win32more.Windows.ApplicationModel.PackageId: ...
|
|
77
|
+
@winrt_commethod(9)
|
|
78
|
+
def get_ReadyState(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyState: ...
|
|
79
|
+
@winrt_commethod(10)
|
|
80
|
+
def get_Certification(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCertification: ...
|
|
81
|
+
@winrt_commethod(11)
|
|
82
|
+
def EnsureReadyAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResult, Double]: ...
|
|
83
|
+
@winrt_commethod(12)
|
|
84
|
+
def TryRegister(self) -> Boolean: ...
|
|
85
|
+
Certification = property(get_Certification, None)
|
|
86
|
+
LibraryPath = property(get_LibraryPath, None)
|
|
87
|
+
Name = property(get_Name, None)
|
|
88
|
+
PackageId = property(get_PackageId, None)
|
|
89
|
+
ReadyState = property(get_ReadyState, None)
|
|
90
|
+
class IExecutionProviderCatalog(ComPtr):
|
|
91
|
+
extends: IInspectable
|
|
92
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalog'
|
|
93
|
+
_iid_ = Guid('{aa9bfe14-2222-5921-8002-4d2a205ea03c}')
|
|
94
|
+
@winrt_commethod(6)
|
|
95
|
+
def FindAllProviders(self) -> ReceiveArray[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider]: ...
|
|
96
|
+
@winrt_commethod(7)
|
|
97
|
+
def EnsureAndRegisterCertifiedAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
|
|
98
|
+
@winrt_commethod(8)
|
|
99
|
+
def RegisterCertifiedAsync(self) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Windows.Foundation.Collections.IVector[win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProvider], Double]: ...
|
|
100
|
+
class IExecutionProviderCatalogStatics(ComPtr):
|
|
101
|
+
extends: IInspectable
|
|
102
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderCatalogStatics'
|
|
103
|
+
_iid_ = Guid('{550def98-2611-5433-afb8-43673b610848}')
|
|
104
|
+
@winrt_commethod(6)
|
|
105
|
+
def GetDefault(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderCatalog: ...
|
|
106
|
+
class IExecutionProviderReadyResult(ComPtr):
|
|
107
|
+
extends: IInspectable
|
|
108
|
+
_classid_ = 'Microsoft.Windows.AI.MachineLearning.IExecutionProviderReadyResult'
|
|
109
|
+
_iid_ = Guid('{91c1724d-93c7-5284-adbe-ba2bd7be7c79}')
|
|
110
|
+
@winrt_commethod(6)
|
|
111
|
+
def get_Status(self) -> win32more.Microsoft.Windows.AI.MachineLearning.ExecutionProviderReadyResultState: ...
|
|
112
|
+
@winrt_commethod(7)
|
|
113
|
+
def get_ExtendedError(self) -> win32more.Windows.Foundation.HResult: ...
|
|
114
|
+
@winrt_commethod(8)
|
|
115
|
+
def get_DiagnosticText(self) -> hstr: ...
|
|
116
|
+
DiagnosticText = property(get_DiagnosticText, None)
|
|
117
|
+
ExtendedError = property(get_ExtendedError, None)
|
|
118
|
+
Status = property(get_Status, None)
|
|
119
|
+
MachineLearningContract: UInt32 = 131072
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
make_ready(__name__)
|
|
@@ -114,6 +114,38 @@ class ILanguageModel(ComPtr):
|
|
|
114
114
|
extends: IInspectable
|
|
115
115
|
_classid_ = 'Microsoft.Windows.AI.Text.ILanguageModel'
|
|
116
116
|
_iid_ = Guid('{6331c629-8c86-5bfe-8c4e-9ca5573cc14b}')
|
|
117
|
+
class ILanguageModel2(ComPtr):
|
|
118
|
+
extends: IInspectable
|
|
119
|
+
_classid_ = 'Microsoft.Windows.AI.Text.ILanguageModel2'
|
|
120
|
+
_iid_ = Guid('{653b714e-f9b3-51cb-954f-5ea58f63ab89}')
|
|
121
|
+
@winrt_commethod(6)
|
|
122
|
+
def GenerateResponseAsync(self, prompt: hstr) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
123
|
+
@winrt_commethod(7)
|
|
124
|
+
def GenerateResponseAsync2(self, prompt: hstr, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
125
|
+
@winrt_commethod(8)
|
|
126
|
+
def GenerateResponseAsync3(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: hstr, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
127
|
+
@winrt_commethod(9)
|
|
128
|
+
def GenerateResponseFromEmbeddingsAsync(self, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector]) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
129
|
+
@winrt_commethod(10)
|
|
130
|
+
def GenerateResponseFromEmbeddingsAsync2(self, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
131
|
+
@winrt_commethod(11)
|
|
132
|
+
def GenerateResponseFromEmbeddingsAsync3(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
133
|
+
@winrt_commethod(12)
|
|
134
|
+
def GenerateEmbeddingVectors(self, prompt: hstr) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
|
|
135
|
+
@winrt_commethod(13)
|
|
136
|
+
def GenerateEmbeddingVectors2(self, prompt: hstr, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
|
|
137
|
+
@winrt_commethod(14)
|
|
138
|
+
def GetUsablePromptLength(self, prompt: hstr) -> UInt64: ...
|
|
139
|
+
@winrt_commethod(15)
|
|
140
|
+
def GetUsablePromptLength2(self, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: hstr) -> UInt64: ...
|
|
141
|
+
@winrt_commethod(16)
|
|
142
|
+
def GetVectorSpaceId(self) -> Guid: ...
|
|
143
|
+
@winrt_commethod(17)
|
|
144
|
+
def CreateContext(self) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
145
|
+
@winrt_commethod(18)
|
|
146
|
+
def CreateContext2(self, systemPrompt: hstr) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
147
|
+
@winrt_commethod(19)
|
|
148
|
+
def CreateContext3(self, systemPrompt: hstr, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
117
149
|
class ILanguageModelContext(ComPtr):
|
|
118
150
|
extends: IInspectable
|
|
119
151
|
_classid_ = 'Microsoft.Windows.AI.Text.ILanguageModelContext'
|
|
@@ -267,6 +299,34 @@ class LanguageModel(ComPtr):
|
|
|
267
299
|
default_interface: win32more.Microsoft.Windows.AI.Text.ILanguageModel
|
|
268
300
|
_classid_ = 'Microsoft.Windows.AI.Text.LanguageModel'
|
|
269
301
|
@winrt_mixinmethod
|
|
302
|
+
def GenerateResponseAsync(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: hstr) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
303
|
+
@winrt_mixinmethod
|
|
304
|
+
def GenerateResponseAsync2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: hstr, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
305
|
+
@winrt_mixinmethod
|
|
306
|
+
def GenerateResponseAsync3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: hstr, options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
307
|
+
@winrt_mixinmethod
|
|
308
|
+
def GenerateResponseFromEmbeddingsAsync(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector]) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
309
|
+
@winrt_mixinmethod
|
|
310
|
+
def GenerateResponseFromEmbeddingsAsync2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
311
|
+
@winrt_mixinmethod
|
|
312
|
+
def GenerateResponseFromEmbeddingsAsync3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, promptEmbedding: win32more.Windows.Foundation.Collections.IIterable[win32more.Microsoft.Windows.AI.Foundation.EmbeddingVector], options: win32more.Microsoft.Windows.AI.Text.LanguageModelOptions) -> win32more.Windows.Foundation.IAsyncOperationWithProgress[win32more.Microsoft.Windows.AI.Text.LanguageModelResponseResult, hstr]: ...
|
|
313
|
+
@winrt_mixinmethod
|
|
314
|
+
def GenerateEmbeddingVectors(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: hstr) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
|
|
315
|
+
@winrt_mixinmethod
|
|
316
|
+
def GenerateEmbeddingVectors2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: hstr, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelEmbeddingVectorResult: ...
|
|
317
|
+
@winrt_mixinmethod
|
|
318
|
+
def GetUsablePromptLength(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, prompt: hstr) -> UInt64: ...
|
|
319
|
+
@winrt_mixinmethod
|
|
320
|
+
def GetUsablePromptLength2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, context: win32more.Microsoft.Windows.AI.Text.LanguageModelContext, prompt: hstr) -> UInt64: ...
|
|
321
|
+
@winrt_mixinmethod
|
|
322
|
+
def GetVectorSpaceId(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2) -> Guid: ...
|
|
323
|
+
@winrt_mixinmethod
|
|
324
|
+
def CreateContext(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
325
|
+
@winrt_mixinmethod
|
|
326
|
+
def CreateContext2(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, systemPrompt: hstr) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
327
|
+
@winrt_mixinmethod
|
|
328
|
+
def CreateContext3(self: win32more.Microsoft.Windows.AI.Text.ILanguageModel2, systemPrompt: hstr, contentFilterOptions: win32more.Microsoft.Windows.AI.ContentSafety.ContentFilterOptions) -> win32more.Microsoft.Windows.AI.Text.LanguageModelContext: ...
|
|
329
|
+
@winrt_mixinmethod
|
|
270
330
|
def Close(self: win32more.Windows.Foundation.IClosable) -> Void: ...
|
|
271
331
|
@winrt_classmethod
|
|
272
332
|
def GetReadyState(cls: win32more.Microsoft.Windows.AI.Text.ILanguageModelStatics) -> win32more.Microsoft.Windows.AI.AIFeatureReadyState: ...
|
win32more/appsdk/versioninfo.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: win32more-Microsoft.WindowsAppSDK
|
|
3
|
-
Version: 0.7.1.8.
|
|
3
|
+
Version: 0.7.1.8.250916003
|
|
4
4
|
License-File: LICENSE (Microsoft.WindowsAppSDK).txt
|
|
5
5
|
Requires-Dist: win32more-core==0.7.*
|
|
6
6
|
Requires-Dist: win32more-microsoft-web-webview2<0.8,>=0.7.1.0.3179.45
|
|
@@ -46,7 +46,8 @@ win32more/Microsoft/Windows/AI/__init__.py,sha256=OVC8NxksWlh_MvSMiVfXy_7zsNYySP
|
|
|
46
46
|
win32more/Microsoft/Windows/AI/ContentSafety/__init__.py,sha256=8zyju03OMh4KJG7yB_RyC4zeG8jX13CvMfdOlLxlLs0,14326
|
|
47
47
|
win32more/Microsoft/Windows/AI/Foundation/__init__.py,sha256=kDVU43OdM43aYAOIBUlN9jizLIGPjop5z5G6ItVp070,2314
|
|
48
48
|
win32more/Microsoft/Windows/AI/Imaging/__init__.py,sha256=R9zgpmWMTcssSQiXk9pAyAJ25ziFbiZx0-xzowXbZ5k,25811
|
|
49
|
-
win32more/Microsoft/Windows/AI/
|
|
49
|
+
win32more/Microsoft/Windows/AI/MachineLearning/__init__.py,sha256=GIoyoQ0ybkqKpwL9kr_oEW1MEq8lFnsxUCG68LgTfg8,7797
|
|
50
|
+
win32more/Microsoft/Windows/AI/Text/__init__.py,sha256=Bf8ULS8fuzyL-XCFgulBzwCNxvREpO3ok8bczccrdgs,34184
|
|
50
51
|
win32more/Microsoft/Windows/AppLifecycle/__init__.py,sha256=JcccnjDp6lm9OMiS6onwETpC81rrT0nqdJ4Js2XIhXk,9936
|
|
51
52
|
win32more/Microsoft/Windows/AppNotifications/__init__.py,sha256=elg2Hm_WROPnNOAMKVRfBSZr28RowKlum2tmliyc-eo,21171
|
|
52
53
|
win32more/Microsoft/Windows/AppNotifications/Builder/__init__.py,sha256=fbYQ_OKeRgq7hIczBthcPZzDQo610cspTTWnb4aOVg8,43256
|
|
@@ -71,14 +72,14 @@ win32more/Microsoft/Windows/Widgets/Feeds/Providers/__init__.py,sha256=z_f-M9N9A
|
|
|
71
72
|
win32more/Microsoft/Windows/Widgets/Notifications/__init__.py,sha256=VlHjcJjaIjTM-CTSpmyhMvi9xDuiP7iHT7X5kaI3YPk,12343
|
|
72
73
|
win32more/Microsoft/Windows/Widgets/Providers/__init__.py,sha256=TSAVqcXc4LGuHslrDe6IMGBLCbuV1U2fugKMFIawgDE,31820
|
|
73
74
|
win32more/Microsoft/Windows/Workloads/__init__.py,sha256=SBOPevXwOL1k1ujX0sbQUP5Gg8VDWI3nXdrBKZMi4y0,275
|
|
74
|
-
win32more/appsdk/versioninfo.py,sha256=
|
|
75
|
+
win32more/appsdk/versioninfo.py,sha256=9Iz9oOy9t4CpdbnWBsdDjIAd5qG1UmnW7tqkpw4Ppz8,149
|
|
75
76
|
win32more/dll/arm64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=7yJrrfq_O6St__WbgvAXLS9cvoRXdQ61zp0yJYMqFHE,81952
|
|
76
77
|
win32more/dll/arm64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=flQneEX8KbD7wlND_w-DxhJVGoGhIgMnhze4In1WPIY,392736
|
|
77
78
|
win32more/dll/x64/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=pzKgoH87ZG8qYfehDCFSnn5H7yqgSqNiDc0xC0jdomE,87608
|
|
78
79
|
win32more/dll/x64/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=DxeBwGgirYV4J-H38GBJqWhscZCMmfD_Lnh7apky5mU,399928
|
|
79
80
|
win32more/dll/x86/Microsoft.Windows.ApplicationModel.Background.UniversalBGTask.dll,sha256=nV79iCGYjBe3NuPZNUeGsHxfOE73-VUA3t4tkVIHpHY,65576
|
|
80
81
|
win32more/dll/x86/Microsoft.WindowsAppRuntime.Bootstrap.dll,sha256=onG0CPBUkJXSlPGngLZB1Y7SBdxxgPjNP6mT_th7X_k,351272
|
|
81
|
-
win32more_microsoft_windowsappsdk-0.7.1.8.
|
|
82
|
-
win32more_microsoft_windowsappsdk-0.7.1.8.
|
|
83
|
-
win32more_microsoft_windowsappsdk-0.7.1.8.
|
|
84
|
-
win32more_microsoft_windowsappsdk-0.7.1.8.
|
|
82
|
+
win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/METADATA,sha256=_pFDHV8UzfiTyLy6cMc-VI8QpGugKkzRffKIw8rGV1w,248
|
|
83
|
+
win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/WHEEL,sha256=tkmg4JIqwd9H8mL30xA7crRmoStyCtGp0VWshokd1Jc,105
|
|
84
|
+
win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/licenses/LICENSE (Microsoft.WindowsAppSDK).txt,sha256=WxHmNHdW5A_gJ0vAjJf4kgG5Tw1QGBoJoA8fR0CEBQE,12637
|
|
85
|
+
win32more_microsoft_windowsappsdk-0.7.1.8.250916003.dist-info/RECORD,,
|
|
File without changes
|