xiaogpt 3.22__tar.gz → 3.23__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.
- {xiaogpt-3.22 → xiaogpt-3.23}/PKG-INFO +21 -17
- {xiaogpt-3.22 → xiaogpt-3.23}/pyproject.toml +21 -17
- {xiaogpt-3.22 → xiaogpt-3.23}/LICENSE +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/README.md +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/__init__.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/__main__.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/__init__.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/base_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/chatgptapi_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/doubao_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/gemini_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/glm_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/langchain_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/llama_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/moonshot_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/qwen_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/bot/yi_bot.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/cli.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/config.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/langchain/callbacks.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/langchain/chain.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/langchain/examples/email/mail_box.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/langchain/examples/email/mail_summary_tools.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/tts/__init__.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/tts/base.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/tts/file.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/tts/live.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/tts/mi.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/utils.py +0 -0
- {xiaogpt-3.22 → xiaogpt-3.23}/xiaogpt/xiaogpt.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: xiaogpt
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.23
|
|
4
4
|
Summary: Play ChatGPT or other LLM with xiaomi AI speaker
|
|
5
5
|
Author-Email: yihong0618 <zouzou0208@gmail.com>
|
|
6
6
|
License: MIT
|
|
@@ -29,14 +29,14 @@ Requires-Dist: lingua-language-detector>=2.0.2; python_version < "3.13"
|
|
|
29
29
|
Requires-Dist: volcengine-python-sdk>=1.1.5
|
|
30
30
|
Provides-Extra: locked
|
|
31
31
|
Requires-Dist: aiohappyeyeballs==2.6.1; extra == "locked"
|
|
32
|
-
Requires-Dist: aiohttp==3.
|
|
32
|
+
Requires-Dist: aiohttp==3.13.1; extra == "locked"
|
|
33
33
|
Requires-Dist: aiosignal==1.4.0; extra == "locked"
|
|
34
34
|
Requires-Dist: annotated-types==0.6.0; extra == "locked"
|
|
35
35
|
Requires-Dist: anyio==4.3.0; extra == "locked"
|
|
36
36
|
Requires-Dist: async-timeout==4.0.3; python_version < "3.11" and extra == "locked"
|
|
37
37
|
Requires-Dist: attrs==23.2.0; extra == "locked"
|
|
38
38
|
Requires-Dist: azure-cognitiveservices-speech==1.37.0; extra == "locked"
|
|
39
|
-
Requires-Dist: beautifulsoup4==4.
|
|
39
|
+
Requires-Dist: beautifulsoup4==4.14.2; extra == "locked"
|
|
40
40
|
Requires-Dist: cachetools==5.3.2; extra == "locked"
|
|
41
41
|
Requires-Dist: certifi==2024.2.2; extra == "locked"
|
|
42
42
|
Requires-Dist: cffi==1.17.1; extra == "locked"
|
|
@@ -44,11 +44,12 @@ Requires-Dist: charset-normalizer==3.3.2; extra == "locked"
|
|
|
44
44
|
Requires-Dist: click==8.1.7; extra == "locked"
|
|
45
45
|
Requires-Dist: colorama==0.4.6; platform_system == "Windows" and extra == "locked"
|
|
46
46
|
Requires-Dist: cryptography==43.0.3; extra == "locked"
|
|
47
|
-
Requires-Dist: dashscope==1.24.
|
|
48
|
-
Requires-Dist: dataclasses-json==0.6.
|
|
47
|
+
Requires-Dist: dashscope==1.24.7; extra == "locked"
|
|
48
|
+
Requires-Dist: dataclasses-json==0.6.7; extra == "locked"
|
|
49
49
|
Requires-Dist: distro==1.9.0; extra == "locked"
|
|
50
50
|
Requires-Dist: edge-tts==6.1.10; extra == "locked"
|
|
51
51
|
Requires-Dist: exceptiongroup==1.2.0; python_version < "3.11" and extra == "locked"
|
|
52
|
+
Requires-Dist: fake-useragent==2.2.0; extra == "locked"
|
|
52
53
|
Requires-Dist: frozenlist==1.4.1; extra == "locked"
|
|
53
54
|
Requires-Dist: google-ai-generativelanguage==0.6.15; extra == "locked"
|
|
54
55
|
Requires-Dist: google-api-core==2.15.0; extra == "locked"
|
|
@@ -61,7 +62,7 @@ Requires-Dist: google-generativeai==0.8.5; extra == "locked"
|
|
|
61
62
|
Requires-Dist: google-search-results==2.4.2; extra == "locked"
|
|
62
63
|
Requires-Dist: googleapis-common-protos==1.62.0; extra == "locked"
|
|
63
64
|
Requires-Dist: greenlet==3.0.3; (platform_machine == "win32" or platform_machine == "WIN32" or platform_machine == "AMD64" or platform_machine == "amd64" or platform_machine == "x86_64" or platform_machine == "ppc64le" or platform_machine == "aarch64") and extra == "locked"
|
|
64
|
-
Requires-Dist: groq==0.
|
|
65
|
+
Requires-Dist: groq==0.33.0; extra == "locked"
|
|
65
66
|
Requires-Dist: grpcio==1.60.0; extra == "locked"
|
|
66
67
|
Requires-Dist: grpcio-status==1.60.0; extra == "locked"
|
|
67
68
|
Requires-Dist: h11==0.14.0; extra == "locked"
|
|
@@ -72,25 +73,26 @@ Requires-Dist: httpx-sse==0.4.0; extra == "locked"
|
|
|
72
73
|
Requires-Dist: httpx-ws==0.6.2; extra == "locked"
|
|
73
74
|
Requires-Dist: httpx[socks]==0.28.1; extra == "locked"
|
|
74
75
|
Requires-Dist: idna==3.7; extra == "locked"
|
|
75
|
-
Requires-Dist:
|
|
76
|
+
Requires-Dist: importlib-resources==6.5.2; python_version < "3.10" and extra == "locked"
|
|
77
|
+
Requires-Dist: jiter==0.11.1; extra == "locked"
|
|
76
78
|
Requires-Dist: jsonpatch==1.33; extra == "locked"
|
|
77
79
|
Requires-Dist: jsonpointer==2.4; extra == "locked"
|
|
78
80
|
Requires-Dist: langchain==0.3.27; extra == "locked"
|
|
79
|
-
Requires-Dist: langchain-community==0.3.
|
|
80
|
-
Requires-Dist: langchain-core==0.3.
|
|
81
|
+
Requires-Dist: langchain-community==0.3.31; extra == "locked"
|
|
82
|
+
Requires-Dist: langchain-core==0.3.79; extra == "locked"
|
|
81
83
|
Requires-Dist: langchain-text-splitters==0.3.9; extra == "locked"
|
|
82
84
|
Requires-Dist: langsmith==0.3.45; extra == "locked"
|
|
83
85
|
Requires-Dist: lingua-language-detector==2.0.2; python_version < "3.13" and extra == "locked"
|
|
84
86
|
Requires-Dist: markdown-it-py==3.0.0; extra == "locked"
|
|
85
87
|
Requires-Dist: marshmallow==3.20.1; extra == "locked"
|
|
86
88
|
Requires-Dist: mdurl==0.1.2; extra == "locked"
|
|
87
|
-
Requires-Dist: miservice-fork==2.
|
|
89
|
+
Requires-Dist: miservice-fork==2.9.2; extra == "locked"
|
|
88
90
|
Requires-Dist: multidict==6.0.5; extra == "locked"
|
|
89
91
|
Requires-Dist: mutagen==1.47.0; extra == "locked"
|
|
90
92
|
Requires-Dist: mypy-extensions==1.0.0; extra == "locked"
|
|
91
93
|
Requires-Dist: numexpr==2.10.2; extra == "locked"
|
|
92
94
|
Requires-Dist: numpy==1.26.3; extra == "locked"
|
|
93
|
-
Requires-Dist: openai==
|
|
95
|
+
Requires-Dist: openai==2.6.1; extra == "locked"
|
|
94
96
|
Requires-Dist: orjson==3.10.0; platform_python_implementation != "PyPy" and extra == "locked"
|
|
95
97
|
Requires-Dist: ormsgpack==1.5.0; extra == "locked"
|
|
96
98
|
Requires-Dist: packaging==23.2; extra == "locked"
|
|
@@ -102,16 +104,16 @@ Requires-Dist: pyasn1-modules==0.3.0; extra == "locked"
|
|
|
102
104
|
Requires-Dist: pycparser==2.22; extra == "locked"
|
|
103
105
|
Requires-Dist: pydantic==2.8.2; extra == "locked"
|
|
104
106
|
Requires-Dist: pydantic-core==2.20.1; extra == "locked"
|
|
105
|
-
Requires-Dist: pydantic-settings==2.
|
|
107
|
+
Requires-Dist: pydantic-settings==2.11.0; extra == "locked"
|
|
106
108
|
Requires-Dist: pygments==2.17.2; extra == "locked"
|
|
107
109
|
Requires-Dist: pyjwt==2.8.0; extra == "locked"
|
|
108
110
|
Requires-Dist: pyparsing==3.1.2; python_version > "3.0" and extra == "locked"
|
|
109
111
|
Requires-Dist: python-dateutil==2.9.0.post0; extra == "locked"
|
|
110
112
|
Requires-Dist: python-dotenv==1.0.1; extra == "locked"
|
|
111
|
-
Requires-Dist: pyyaml==6.0.
|
|
112
|
-
Requires-Dist: requests==2.
|
|
113
|
+
Requires-Dist: pyyaml==6.0.3; extra == "locked"
|
|
114
|
+
Requires-Dist: requests==2.32.5; extra == "locked"
|
|
113
115
|
Requires-Dist: requests-toolbelt==1.0.0; extra == "locked"
|
|
114
|
-
Requires-Dist: rich==14.
|
|
116
|
+
Requires-Dist: rich==14.2.0; extra == "locked"
|
|
115
117
|
Requires-Dist: rsa==4.9; extra == "locked"
|
|
116
118
|
Requires-Dist: setuptools==78.1.1; extra == "locked"
|
|
117
119
|
Requires-Dist: six==1.17.0; extra == "locked"
|
|
@@ -124,13 +126,15 @@ Requires-Dist: tetos==0.4.2; extra == "locked"
|
|
|
124
126
|
Requires-Dist: tqdm==4.66.1; extra == "locked"
|
|
125
127
|
Requires-Dist: typing-extensions==4.12.2; extra == "locked"
|
|
126
128
|
Requires-Dist: typing-inspect==0.9.0; extra == "locked"
|
|
129
|
+
Requires-Dist: typing-inspection==0.4.2; extra == "locked"
|
|
127
130
|
Requires-Dist: uritemplate==4.1.1; extra == "locked"
|
|
128
131
|
Requires-Dist: urllib3==2.1.0; extra == "locked"
|
|
129
|
-
Requires-Dist: volcengine-python-sdk==4.0.
|
|
132
|
+
Requires-Dist: volcengine-python-sdk==4.0.27; extra == "locked"
|
|
130
133
|
Requires-Dist: websocket-client==1.8.0; extra == "locked"
|
|
131
134
|
Requires-Dist: wsproto==1.2.0; extra == "locked"
|
|
132
135
|
Requires-Dist: yarl==1.20.0; extra == "locked"
|
|
133
|
-
Requires-Dist: zhipuai==2.1.5.
|
|
136
|
+
Requires-Dist: zhipuai==2.1.5.20250825; extra == "locked"
|
|
137
|
+
Requires-Dist: zipp==3.23.0; python_version < "3.10" and extra == "locked"
|
|
134
138
|
Requires-Dist: zstandard==0.23.0; extra == "locked"
|
|
135
139
|
Description-Content-Type: text/markdown
|
|
136
140
|
|
|
@@ -32,7 +32,7 @@ dependencies = [
|
|
|
32
32
|
"volcengine-python-sdk>=1.1.5",
|
|
33
33
|
]
|
|
34
34
|
dynamic = []
|
|
35
|
-
version = "3.
|
|
35
|
+
version = "3.23"
|
|
36
36
|
|
|
37
37
|
[project.license]
|
|
38
38
|
text = "MIT"
|
|
@@ -46,14 +46,14 @@ xiaogpt = "xiaogpt.cli:main"
|
|
|
46
46
|
[project.optional-dependencies]
|
|
47
47
|
locked = [
|
|
48
48
|
"aiohappyeyeballs==2.6.1",
|
|
49
|
-
"aiohttp==3.
|
|
49
|
+
"aiohttp==3.13.1",
|
|
50
50
|
"aiosignal==1.4.0",
|
|
51
51
|
"annotated-types==0.6.0",
|
|
52
52
|
"anyio==4.3.0",
|
|
53
53
|
"async-timeout==4.0.3 ; python_version < \"3.11\"",
|
|
54
54
|
"attrs==23.2.0",
|
|
55
55
|
"azure-cognitiveservices-speech==1.37.0",
|
|
56
|
-
"beautifulsoup4==4.
|
|
56
|
+
"beautifulsoup4==4.14.2",
|
|
57
57
|
"cachetools==5.3.2",
|
|
58
58
|
"certifi==2024.2.2",
|
|
59
59
|
"cffi==1.17.1",
|
|
@@ -61,11 +61,12 @@ locked = [
|
|
|
61
61
|
"click==8.1.7",
|
|
62
62
|
"colorama==0.4.6 ; platform_system == \"Windows\"",
|
|
63
63
|
"cryptography==43.0.3",
|
|
64
|
-
"dashscope==1.24.
|
|
65
|
-
"dataclasses-json==0.6.
|
|
64
|
+
"dashscope==1.24.7",
|
|
65
|
+
"dataclasses-json==0.6.7",
|
|
66
66
|
"distro==1.9.0",
|
|
67
67
|
"edge-tts==6.1.10",
|
|
68
68
|
"exceptiongroup==1.2.0 ; python_version < \"3.11\"",
|
|
69
|
+
"fake-useragent==2.2.0",
|
|
69
70
|
"frozenlist==1.4.1",
|
|
70
71
|
"google-ai-generativelanguage==0.6.15",
|
|
71
72
|
"google-api-core==2.15.0",
|
|
@@ -78,7 +79,7 @@ locked = [
|
|
|
78
79
|
"google-search-results==2.4.2",
|
|
79
80
|
"googleapis-common-protos==1.62.0",
|
|
80
81
|
"greenlet==3.0.3 ; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"",
|
|
81
|
-
"groq==0.
|
|
82
|
+
"groq==0.33.0",
|
|
82
83
|
"grpcio==1.60.0",
|
|
83
84
|
"grpcio-status==1.60.0",
|
|
84
85
|
"h11==0.14.0",
|
|
@@ -89,25 +90,26 @@ locked = [
|
|
|
89
90
|
"httpx-ws==0.6.2",
|
|
90
91
|
"httpx[socks]==0.28.1",
|
|
91
92
|
"idna==3.7",
|
|
92
|
-
"
|
|
93
|
+
"importlib-resources==6.5.2 ; python_version < \"3.10\"",
|
|
94
|
+
"jiter==0.11.1",
|
|
93
95
|
"jsonpatch==1.33",
|
|
94
96
|
"jsonpointer==2.4",
|
|
95
97
|
"langchain==0.3.27",
|
|
96
|
-
"langchain-community==0.3.
|
|
97
|
-
"langchain-core==0.3.
|
|
98
|
+
"langchain-community==0.3.31",
|
|
99
|
+
"langchain-core==0.3.79",
|
|
98
100
|
"langchain-text-splitters==0.3.9",
|
|
99
101
|
"langsmith==0.3.45",
|
|
100
102
|
"lingua-language-detector==2.0.2 ; python_version < \"3.13\"",
|
|
101
103
|
"markdown-it-py==3.0.0",
|
|
102
104
|
"marshmallow==3.20.1",
|
|
103
105
|
"mdurl==0.1.2",
|
|
104
|
-
"miservice-fork==2.
|
|
106
|
+
"miservice-fork==2.9.2",
|
|
105
107
|
"multidict==6.0.5",
|
|
106
108
|
"mutagen==1.47.0",
|
|
107
109
|
"mypy-extensions==1.0.0",
|
|
108
110
|
"numexpr==2.10.2",
|
|
109
111
|
"numpy==1.26.3",
|
|
110
|
-
"openai==
|
|
112
|
+
"openai==2.6.1",
|
|
111
113
|
"orjson==3.10.0 ; platform_python_implementation != \"PyPy\"",
|
|
112
114
|
"ormsgpack==1.5.0",
|
|
113
115
|
"packaging==23.2",
|
|
@@ -119,16 +121,16 @@ locked = [
|
|
|
119
121
|
"pycparser==2.22",
|
|
120
122
|
"pydantic==2.8.2",
|
|
121
123
|
"pydantic-core==2.20.1",
|
|
122
|
-
"pydantic-settings==2.
|
|
124
|
+
"pydantic-settings==2.11.0",
|
|
123
125
|
"pygments==2.17.2",
|
|
124
126
|
"pyjwt==2.8.0",
|
|
125
127
|
"pyparsing==3.1.2 ; python_version > \"3.0\"",
|
|
126
128
|
"python-dateutil==2.9.0.post0",
|
|
127
129
|
"python-dotenv==1.0.1",
|
|
128
|
-
"pyyaml==6.0.
|
|
129
|
-
"requests==2.
|
|
130
|
+
"pyyaml==6.0.3",
|
|
131
|
+
"requests==2.32.5",
|
|
130
132
|
"requests-toolbelt==1.0.0",
|
|
131
|
-
"rich==14.
|
|
133
|
+
"rich==14.2.0",
|
|
132
134
|
"rsa==4.9",
|
|
133
135
|
"setuptools==78.1.1",
|
|
134
136
|
"six==1.17.0",
|
|
@@ -141,13 +143,15 @@ locked = [
|
|
|
141
143
|
"tqdm==4.66.1",
|
|
142
144
|
"typing-extensions==4.12.2",
|
|
143
145
|
"typing-inspect==0.9.0",
|
|
146
|
+
"typing-inspection==0.4.2",
|
|
144
147
|
"uritemplate==4.1.1",
|
|
145
148
|
"urllib3==2.1.0",
|
|
146
|
-
"volcengine-python-sdk==4.0.
|
|
149
|
+
"volcengine-python-sdk==4.0.27",
|
|
147
150
|
"websocket-client==1.8.0",
|
|
148
151
|
"wsproto==1.2.0",
|
|
149
152
|
"yarl==1.20.0",
|
|
150
|
-
"zhipuai==2.1.5.
|
|
153
|
+
"zhipuai==2.1.5.20250825",
|
|
154
|
+
"zipp==3.23.0 ; python_version < \"3.10\"",
|
|
151
155
|
"zstandard==0.23.0",
|
|
152
156
|
]
|
|
153
157
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|