chatlas 0.9.1__py3-none-any.whl → 0.9.2__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 chatlas might be problematic. Click here for more details.
- chatlas/__init__.py +9 -9
- chatlas/_auto.py +9 -9
- chatlas/_chat.py +37 -8
- chatlas/{_anthropic.py → _provider_anthropic.py} +11 -2
- chatlas/{_databricks.py → _provider_databricks.py} +2 -2
- chatlas/{_github.py → _provider_github.py} +2 -2
- chatlas/{_google.py → _provider_google.py} +5 -5
- chatlas/{_groq.py → _provider_groq.py} +2 -2
- chatlas/{_ollama.py → _provider_ollama.py} +2 -2
- chatlas/{_openai.py → _provider_openai.py} +19 -4
- chatlas/{_perplexity.py → _provider_perplexity.py} +2 -2
- chatlas/{_snowflake.py → _provider_snowflake.py} +3 -3
- chatlas/_tokens.py +23 -8
- chatlas/_turn.py +3 -4
- chatlas/_version.py +2 -2
- chatlas/data/prices.json +2769 -163
- chatlas/types/__init__.py +3 -3
- chatlas/types/anthropic/_submit.py +5 -5
- chatlas/types/google/_submit.py +23 -29
- chatlas/types/openai/_submit.py +25 -3
- {chatlas-0.9.1.dist-info → chatlas-0.9.2.dist-info}/METADATA +2 -2
- {chatlas-0.9.1.dist-info → chatlas-0.9.2.dist-info}/RECORD +24 -24
- {chatlas-0.9.1.dist-info → chatlas-0.9.2.dist-info}/WHEEL +0 -0
- {chatlas-0.9.1.dist-info → chatlas-0.9.2.dist-info}/licenses/LICENSE +0 -0
chatlas/types/__init__.py
CHANGED
|
@@ -17,7 +17,8 @@ import anthropic.types.tool_choice_none_param
|
|
|
17
17
|
import anthropic.types.tool_choice_tool_param
|
|
18
18
|
import anthropic.types.tool_param
|
|
19
19
|
import anthropic.types.tool_text_editor_20250124_param
|
|
20
|
-
import anthropic.types.
|
|
20
|
+
import anthropic.types.tool_text_editor_20250429_param
|
|
21
|
+
import anthropic.types.tool_text_editor_20250728_param
|
|
21
22
|
import anthropic.types.web_search_tool_20250305_param
|
|
22
23
|
|
|
23
24
|
|
|
@@ -39,12 +40,10 @@ class SubmitInputArgs(TypedDict, total=False):
|
|
|
39
40
|
"claude-opus-4-0",
|
|
40
41
|
"claude-opus-4-20250514",
|
|
41
42
|
"claude-4-opus-20250514",
|
|
43
|
+
"claude-opus-4-1-20250805",
|
|
42
44
|
"claude-3-opus-latest",
|
|
43
45
|
"claude-3-opus-20240229",
|
|
44
|
-
"claude-3-sonnet-20240229",
|
|
45
46
|
"claude-3-haiku-20240307",
|
|
46
|
-
"claude-2.1",
|
|
47
|
-
"claude-2.0",
|
|
48
47
|
],
|
|
49
48
|
str,
|
|
50
49
|
]
|
|
@@ -75,7 +74,8 @@ class SubmitInputArgs(TypedDict, total=False):
|
|
|
75
74
|
anthropic.types.tool_param.ToolParam,
|
|
76
75
|
anthropic.types.tool_bash_20250124_param.ToolBash20250124Param,
|
|
77
76
|
anthropic.types.tool_text_editor_20250124_param.ToolTextEditor20250124Param,
|
|
78
|
-
anthropic.types.
|
|
77
|
+
anthropic.types.tool_text_editor_20250429_param.ToolTextEditor20250429Param,
|
|
78
|
+
anthropic.types.tool_text_editor_20250728_param.ToolTextEditor20250728Param,
|
|
79
79
|
anthropic.types.web_search_tool_20250305_param.WebSearchTool20250305Param,
|
|
80
80
|
]
|
|
81
81
|
],
|
chatlas/types/google/_submit.py
CHANGED
|
@@ -12,52 +12,46 @@ import PIL.Image
|
|
|
12
12
|
class SubmitInputArgs(TypedDict, total=False):
|
|
13
13
|
model: str
|
|
14
14
|
contents: Union[
|
|
15
|
+
google.genai.types.Content,
|
|
16
|
+
google.genai.types.ContentDict,
|
|
17
|
+
str,
|
|
18
|
+
PIL.Image.Image,
|
|
19
|
+
google.genai.types.File,
|
|
20
|
+
google.genai.types.FileDict,
|
|
21
|
+
google.genai.types.Part,
|
|
22
|
+
google.genai.types.PartDict,
|
|
15
23
|
list[
|
|
16
24
|
Union[
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Union[
|
|
20
|
-
google.genai.types.File,
|
|
21
|
-
google.genai.types.Part,
|
|
22
|
-
PIL.Image.Image,
|
|
23
|
-
str,
|
|
24
|
-
]
|
|
25
|
-
],
|
|
25
|
+
str,
|
|
26
|
+
PIL.Image.Image,
|
|
26
27
|
google.genai.types.File,
|
|
28
|
+
google.genai.types.FileDict,
|
|
27
29
|
google.genai.types.Part,
|
|
28
|
-
|
|
29
|
-
str,
|
|
30
|
+
google.genai.types.PartDict,
|
|
30
31
|
]
|
|
31
32
|
],
|
|
32
|
-
google.genai.types.Content,
|
|
33
|
-
list[
|
|
34
|
-
Union[
|
|
35
|
-
google.genai.types.File, google.genai.types.Part, PIL.Image.Image, str
|
|
36
|
-
]
|
|
37
|
-
],
|
|
38
|
-
google.genai.types.File,
|
|
39
|
-
google.genai.types.Part,
|
|
40
|
-
PIL.Image.Image,
|
|
41
|
-
str,
|
|
42
33
|
list[
|
|
43
34
|
Union[
|
|
44
35
|
google.genai.types.Content,
|
|
36
|
+
google.genai.types.ContentDict,
|
|
37
|
+
str,
|
|
38
|
+
PIL.Image.Image,
|
|
39
|
+
google.genai.types.File,
|
|
40
|
+
google.genai.types.FileDict,
|
|
41
|
+
google.genai.types.Part,
|
|
42
|
+
google.genai.types.PartDict,
|
|
45
43
|
list[
|
|
46
44
|
Union[
|
|
45
|
+
str,
|
|
46
|
+
PIL.Image.Image,
|
|
47
47
|
google.genai.types.File,
|
|
48
|
+
google.genai.types.FileDict,
|
|
48
49
|
google.genai.types.Part,
|
|
49
|
-
|
|
50
|
-
str,
|
|
50
|
+
google.genai.types.PartDict,
|
|
51
51
|
]
|
|
52
52
|
],
|
|
53
|
-
google.genai.types.File,
|
|
54
|
-
google.genai.types.Part,
|
|
55
|
-
PIL.Image.Image,
|
|
56
|
-
str,
|
|
57
|
-
google.genai.types.ContentDict,
|
|
58
53
|
]
|
|
59
54
|
],
|
|
60
|
-
google.genai.types.ContentDict,
|
|
61
55
|
]
|
|
62
56
|
config: Union[
|
|
63
57
|
google.genai.types.GenerateContentConfig,
|
chatlas/types/openai/_submit.py
CHANGED
|
@@ -6,17 +6,20 @@
|
|
|
6
6
|
from typing import Iterable, Literal, Mapping, Optional, TypedDict, Union
|
|
7
7
|
|
|
8
8
|
import openai
|
|
9
|
+
import openai.types.chat.chat_completion_allowed_tool_choice_param
|
|
9
10
|
import openai.types.chat.chat_completion_assistant_message_param
|
|
10
11
|
import openai.types.chat.chat_completion_audio_param
|
|
12
|
+
import openai.types.chat.chat_completion_custom_tool_param
|
|
11
13
|
import openai.types.chat.chat_completion_developer_message_param
|
|
12
14
|
import openai.types.chat.chat_completion_function_call_option_param
|
|
13
15
|
import openai.types.chat.chat_completion_function_message_param
|
|
16
|
+
import openai.types.chat.chat_completion_function_tool_param
|
|
17
|
+
import openai.types.chat.chat_completion_named_tool_choice_custom_param
|
|
14
18
|
import openai.types.chat.chat_completion_named_tool_choice_param
|
|
15
19
|
import openai.types.chat.chat_completion_prediction_content_param
|
|
16
20
|
import openai.types.chat.chat_completion_stream_options_param
|
|
17
21
|
import openai.types.chat.chat_completion_system_message_param
|
|
18
22
|
import openai.types.chat.chat_completion_tool_message_param
|
|
19
|
-
import openai.types.chat.chat_completion_tool_param
|
|
20
23
|
import openai.types.chat.chat_completion_user_message_param
|
|
21
24
|
import openai.types.chat.completion_create_params
|
|
22
25
|
import openai.types.shared_params.response_format_json_object
|
|
@@ -38,6 +41,13 @@ class SubmitInputArgs(TypedDict, total=False):
|
|
|
38
41
|
model: Union[
|
|
39
42
|
str,
|
|
40
43
|
Literal[
|
|
44
|
+
"gpt-5",
|
|
45
|
+
"gpt-5-mini",
|
|
46
|
+
"gpt-5-nano",
|
|
47
|
+
"gpt-5-2025-08-07",
|
|
48
|
+
"gpt-5-mini-2025-08-07",
|
|
49
|
+
"gpt-5-nano-2025-08-07",
|
|
50
|
+
"gpt-5-chat-latest",
|
|
41
51
|
"gpt-4.1",
|
|
42
52
|
"gpt-4.1-mini",
|
|
43
53
|
"gpt-4.1-nano",
|
|
@@ -123,13 +133,17 @@ class SubmitInputArgs(TypedDict, total=False):
|
|
|
123
133
|
openai.NotGiven,
|
|
124
134
|
]
|
|
125
135
|
presence_penalty: Union[float, None, openai.NotGiven]
|
|
126
|
-
|
|
136
|
+
prompt_cache_key: str | openai.NotGiven
|
|
137
|
+
reasoning_effort: Union[
|
|
138
|
+
Literal["minimal", "low", "medium", "high"], None, openai.NotGiven
|
|
139
|
+
]
|
|
127
140
|
response_format: Union[
|
|
128
141
|
openai.types.shared_params.response_format_text.ResponseFormatText,
|
|
129
142
|
openai.types.shared_params.response_format_json_schema.ResponseFormatJSONSchema,
|
|
130
143
|
openai.types.shared_params.response_format_json_object.ResponseFormatJSONObject,
|
|
131
144
|
openai.NotGiven,
|
|
132
145
|
]
|
|
146
|
+
safety_identifier: str | openai.NotGiven
|
|
133
147
|
seed: Union[int, None, openai.NotGiven]
|
|
134
148
|
service_tier: Union[
|
|
135
149
|
Literal["auto", "default", "flex", "scale", "priority"], None, openai.NotGiven
|
|
@@ -145,16 +159,24 @@ class SubmitInputArgs(TypedDict, total=False):
|
|
|
145
159
|
temperature: Union[float, None, openai.NotGiven]
|
|
146
160
|
tool_choice: Union[
|
|
147
161
|
Literal["none", "auto", "required"],
|
|
162
|
+
openai.types.chat.chat_completion_allowed_tool_choice_param.ChatCompletionAllowedToolChoiceParam,
|
|
148
163
|
openai.types.chat.chat_completion_named_tool_choice_param.ChatCompletionNamedToolChoiceParam,
|
|
164
|
+
openai.types.chat.chat_completion_named_tool_choice_custom_param.ChatCompletionNamedToolChoiceCustomParam,
|
|
149
165
|
openai.NotGiven,
|
|
150
166
|
]
|
|
151
167
|
tools: Union[
|
|
152
|
-
Iterable[
|
|
168
|
+
Iterable[
|
|
169
|
+
Union[
|
|
170
|
+
openai.types.chat.chat_completion_function_tool_param.ChatCompletionFunctionToolParam,
|
|
171
|
+
openai.types.chat.chat_completion_custom_tool_param.ChatCompletionCustomToolParam,
|
|
172
|
+
]
|
|
173
|
+
],
|
|
153
174
|
openai.NotGiven,
|
|
154
175
|
]
|
|
155
176
|
top_logprobs: Union[int, None, openai.NotGiven]
|
|
156
177
|
top_p: Union[float, None, openai.NotGiven]
|
|
157
178
|
user: str | openai.NotGiven
|
|
179
|
+
verbosity: Union[Literal["low", "medium", "high"], None, openai.NotGiven]
|
|
158
180
|
extra_headers: Optional[Mapping[str, Union[str, openai.Omit]]]
|
|
159
181
|
extra_query: Optional[Mapping[str, object]]
|
|
160
182
|
extra_body: object | None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: chatlas
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.2
|
|
4
4
|
Summary: A simple and consistent interface for chatting with LLMs
|
|
5
5
|
Project-URL: Homepage, https://posit-dev.github.io/chatlas
|
|
6
6
|
Project-URL: Documentation, https://posit-dev.github.io/chatlas
|
|
@@ -69,7 +69,7 @@ Provides-Extra: ollama
|
|
|
69
69
|
Provides-Extra: openai
|
|
70
70
|
Provides-Extra: perplexity
|
|
71
71
|
Provides-Extra: snowflake
|
|
72
|
-
Requires-Dist: snowflake-ml-python; extra == 'snowflake'
|
|
72
|
+
Requires-Dist: snowflake-ml-python<=1.9.0; extra == 'snowflake'
|
|
73
73
|
Provides-Extra: test
|
|
74
74
|
Requires-Dist: pyright>=1.1.379; extra == 'test'
|
|
75
75
|
Requires-Dist: pytest-asyncio; extra == 'test'
|
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
chatlas/__init__.py,sha256=
|
|
2
|
-
chatlas/
|
|
3
|
-
chatlas/_auto.py,sha256=8a0ozUnPR8H4_h6BeUiObLN1mZEGTXDGAUbxYcD_a7U,5579
|
|
1
|
+
chatlas/__init__.py,sha256=AynwP-KZLrA_U4aYUt7JgnRZKydodszWPu-tnmeh6xc,1706
|
|
2
|
+
chatlas/_auto.py,sha256=-s7XGzsKLX4RipWtk4WOE8iKbOBhXPUPtI0-63PpXCY,5660
|
|
4
3
|
chatlas/_callbacks.py,sha256=3RpPaOQonTqScjXbaShgKJ1Rc-YxzWerxKRBjVssFnc,1838
|
|
5
|
-
chatlas/_chat.py,sha256=
|
|
4
|
+
chatlas/_chat.py,sha256=RA0EZIbMC6fEulzYIJdE9QMmFMRgF4zkenoXwAtwpTs,82048
|
|
6
5
|
chatlas/_content.py,sha256=Jk0frLSdZTEyGu4KDHsgQbQQDHEX9nYVMNUXx4OKGSo,19775
|
|
7
6
|
chatlas/_content_image.py,sha256=EUK6wAint-JatLsiwvaPDu4D3W-NcIsDCkzABkXgfDg,8304
|
|
8
7
|
chatlas/_content_pdf.py,sha256=cffeuJxzhUDukQ-Srkmpy62M8X12skYpU_FVq-Wvya4,2420
|
|
9
|
-
chatlas/_databricks.py,sha256=yZ3h40pGJfJYtwvo3aC3-XiI_mFVK3TO7MAdqhOHyiU,4144
|
|
10
8
|
chatlas/_display.py,sha256=wyQzSc6z1VqrJfkTLkw1wQcti9s1Pr4qT8UxFJESn4U,4664
|
|
11
|
-
chatlas/_github.py,sha256=pDtU6T_gOI6HNPpK0nQRtIdLImONpNtCgd-JCJecuME,3903
|
|
12
|
-
chatlas/_google.py,sha256=Yp9SVuo3MCAZXEAUUUr57gzzHdsEgw-SPLoJhGuXBj0,20185
|
|
13
|
-
chatlas/_groq.py,sha256=8imeJFKiRbK1E212FdHsZ8fwHEVd0JmJfZe0H9qCWao,3653
|
|
14
9
|
chatlas/_interpolate.py,sha256=kqMrSmqxqzNCl9ReweZqT2hOtdfLOgNcOguLCfAHNMY,3641
|
|
15
10
|
chatlas/_live_render.py,sha256=UMZltE35LxziDKPMEeDwQ9meZ95SeqwhJi7j-y9pcro,4004
|
|
16
11
|
chatlas/_logging.py,sha256=weKvXZDIZ88X7X61ruXM_S0AAhQ5mgiW9dR-km8x7Mg,3324
|
|
17
12
|
chatlas/_mcp_manager.py,sha256=smMXeKZzP90MrlCdnTHMyo7AWHwl7J2jkU8dKSlnEsQ,10237
|
|
18
13
|
chatlas/_merge.py,sha256=SGj_BetgA7gaOqSBKOhYmW3CYeQKTEehFrXvx3y4OYE,3924
|
|
19
|
-
chatlas/_ollama.py,sha256=tgx7DjaIHsGh-lnr4TzbkKoelPVXp7goG3LbyJ8bnYM,3291
|
|
20
|
-
chatlas/_openai.py,sha256=sJTPMpzoSbYJswJv2hnKHgHZ3n8Za-gpfW_Ue41dNL0,24814
|
|
21
|
-
chatlas/_perplexity.py,sha256=KcGbOwKwdKX8eJJZzkW33SPt9mPE4aFWLAP0pzsOjeQ,3940
|
|
22
14
|
chatlas/_provider.py,sha256=0cl6JtMe6xRbc-ghp4JqdwTv6OQeewQUgdToRSktJ3I,5374
|
|
23
|
-
chatlas/
|
|
24
|
-
chatlas/
|
|
15
|
+
chatlas/_provider_anthropic.py,sha256=5pcV0_eUHnQVVLSUfJiZ18Udf9vmbxDoPzcpFJJhicE,26005
|
|
16
|
+
chatlas/_provider_databricks.py,sha256=RAaWJTNOj0qmmOBg6Lg59idKE6ekm4JDsHgL2Pwq6Xc,4162
|
|
17
|
+
chatlas/_provider_github.py,sha256=68dXdNxEQo5Yf7MtxA-SdV3HGXzMEQie1sP3c5u7Akk,3921
|
|
18
|
+
chatlas/_provider_google.py,sha256=Q-VgKij7T3y3zPMhx73BxoHM8RG499Ediw4lMNWWVYA,20297
|
|
19
|
+
chatlas/_provider_groq.py,sha256=XB2JDyuF95CcSbNkgk7JHcuy9KCW7hxTVaONDSjK8U8,3671
|
|
20
|
+
chatlas/_provider_ollama.py,sha256=2TNg5UTEYQvjeChqyJ8hh8fV-A0Xh-B5Hv8b5rtA9FY,3309
|
|
21
|
+
chatlas/_provider_openai.py,sha256=MGvlRlItaqzqRaqZ6Nenf3N1NUbH-MwaSltOTk6phms,25374
|
|
22
|
+
chatlas/_provider_perplexity.py,sha256=hEfKYmNrv3yU-IP_3xCS02u7pQunhKC6iZpoiKWX9fc,3958
|
|
23
|
+
chatlas/_provider_snowflake.py,sha256=83P7NiNT3D_JNeX_zs4JXwDWeoaYo9IKxN91W0GWWho,24310
|
|
24
|
+
chatlas/_tokens.py,sha256=Z004y1dGoRVV36BfRnOfeUhUJgwh94QhNRWwE5867Bo,5335
|
|
25
25
|
chatlas/_tokens_old.py,sha256=L9d9oafrXvEx2u4nIn_Jjn7adnQyLBnYBuPwJUE8Pl8,5005
|
|
26
26
|
chatlas/_tools.py,sha256=bOXJ0ry6vQqU8Qm-PVdESN8HTuUv1teqPH_vtqILv9k,11088
|
|
27
|
-
chatlas/_turn.py,sha256=
|
|
27
|
+
chatlas/_turn.py,sha256=yK7alUxeP8d2iBc7amyz20BtEqcpvX6BCwWZsnlQ5R4,4515
|
|
28
28
|
chatlas/_typing_extensions.py,sha256=YdzmlyPSBpIEcsOkoz12e6jETT1XEMV2Q72haE4cfwY,1036
|
|
29
29
|
chatlas/_utils.py,sha256=Kku2fa1mvTYCr5D28VxE6-fwfy2e2doCi-eKQkLEg4Y,4686
|
|
30
|
-
chatlas/_version.py,sha256=
|
|
30
|
+
chatlas/_version.py,sha256=eeYYTSIkrgfRwSQ7LKo_py3xs3DvzgfWiAtK4K1JM4A,511
|
|
31
31
|
chatlas/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
-
chatlas/data/prices.json,sha256=
|
|
33
|
-
chatlas/types/__init__.py,sha256=
|
|
32
|
+
chatlas/data/prices.json,sha256=vESC5G1SDCnPrfRQTrvJ9wVdxyLEJZrAygV0oJ99ccc,56230
|
|
33
|
+
chatlas/types/__init__.py,sha256=oRgbo1FIC2qkiZ6Bi4n3RNgCA6VDTeueoCHO4-6h1NA,725
|
|
34
34
|
chatlas/types/anthropic/__init__.py,sha256=OwubA-DPHYpYo0XyRyAFwftOI0mOxtHzAyhUSLcDx54,417
|
|
35
35
|
chatlas/types/anthropic/_client.py,sha256=G0LRhoFBcsSOMr5qhP-0rAScsVXaVlHCpggfVp54bnQ,690
|
|
36
36
|
chatlas/types/anthropic/_client_bedrock.py,sha256=mNazQlu0pQt8JdzrYn3LKNgE4n732GjhQUJdQQK9QkY,785
|
|
37
|
-
chatlas/types/anthropic/_submit.py,sha256=
|
|
37
|
+
chatlas/types/anthropic/_submit.py,sha256=o5bpKEne6lqBz4YBLoYwRLKCVmBIdzRetiMCoOdUfb0,3661
|
|
38
38
|
chatlas/types/google/__init__.py,sha256=ZJhi8Kwvio2zp8T1TQqmvdHqkS-Khb6BGESPjREADgo,337
|
|
39
39
|
chatlas/types/google/_client.py,sha256=t7aKbxYq_xOA1Z3RnWcjewifdQFSHi7vKEj6MyKMCJk,729
|
|
40
|
-
chatlas/types/google/_submit.py,sha256=
|
|
40
|
+
chatlas/types/google/_submit.py,sha256=19Ji4fAo1lTCbNSpR6Yi0i64RJwMGBdiZKQcnoDNRwY,1796
|
|
41
41
|
chatlas/types/openai/__init__.py,sha256=Q2RAr1bSH1nHsxICK05nAmKmxdhKmhbBkWD_XHiVSrI,411
|
|
42
42
|
chatlas/types/openai/_client.py,sha256=xEnMiVFjeIQkfMtTWA4mZP_cQbh8uBphml0H7x4ot4Q,785
|
|
43
43
|
chatlas/types/openai/_client_azure.py,sha256=Dw8AgWgBgjSOkpYKAyjlx8Gxndc2E4FLww32FzqTRPg,889
|
|
44
|
-
chatlas/types/openai/_submit.py,sha256=
|
|
45
|
-
chatlas-0.9.
|
|
46
|
-
chatlas-0.9.
|
|
47
|
-
chatlas-0.9.
|
|
48
|
-
chatlas-0.9.
|
|
44
|
+
chatlas/types/openai/_submit.py,sha256=kZ7pAXUW5sUzY5-q4GLYOQigOxL4kAuRup-3nJM7NDg,7697
|
|
45
|
+
chatlas-0.9.2.dist-info/METADATA,sha256=W7hyhJ18k9R1Q1vw-vB659_Cb7FLUVTZM7F3x_3j-v8,5531
|
|
46
|
+
chatlas-0.9.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
47
|
+
chatlas-0.9.2.dist-info/licenses/LICENSE,sha256=zyuGzPOC7CcbOaBHsQ3UEyKYRO56KDUkor0OA4LqqDg,1081
|
|
48
|
+
chatlas-0.9.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|