xiaogpt 2.40__tar.gz → 2.41__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.
Files changed (28) hide show
  1. {xiaogpt-2.40 → xiaogpt-2.41}/PKG-INFO +5 -3
  2. {xiaogpt-2.40 → xiaogpt-2.41}/README.md +4 -2
  3. {xiaogpt-2.40 → xiaogpt-2.41}/pyproject.toml +1 -1
  4. {xiaogpt-2.40 → xiaogpt-2.41}/LICENSE +0 -0
  5. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/__init__.py +0 -0
  6. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/__main__.py +0 -0
  7. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/__init__.py +0 -0
  8. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/base_bot.py +0 -0
  9. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/chatgptapi_bot.py +0 -0
  10. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/gemini_bot.py +0 -0
  11. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/glm_bot.py +0 -0
  12. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/langchain_bot.py +0 -0
  13. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/newbing_bot.py +0 -0
  14. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/bot/qwen_bot.py +0 -0
  15. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/cli.py +0 -0
  16. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/config.py +0 -0
  17. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/langchain/callbacks.py +0 -0
  18. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/langchain/chain.py +0 -0
  19. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/langchain/examples/email/mail_box.py +0 -0
  20. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/langchain/examples/email/mail_summary_tools.py +0 -0
  21. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/__init__.py +0 -0
  22. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/azure.py +0 -0
  23. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/base.py +0 -0
  24. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/edge.py +0 -0
  25. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/mi.py +0 -0
  26. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/tts/openai.py +0 -0
  27. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/utils.py +0 -0
  28. {xiaogpt-2.40 → xiaogpt-2.41}/xiaogpt/xiaogpt.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: xiaogpt
3
- Version: 2.40
3
+ Version: 2.41
4
4
  Summary: Play ChatGPT or other LLM with xiaomi AI speaker
5
5
  Author-Email: yihong0618 <zouzou0208@gmail.com>
6
6
  License: MIT
@@ -301,9 +301,11 @@ docker build --build-arg PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
301
301
 
302
302
  ### 第三方 TTS
303
303
 
304
- 我们目前支持两种第三方 TTS:edge/openai
304
+ 我们目前支持是三种第三方 TTS:edge/openai/azure
305
305
 
306
306
  [edge-tts](https://github.com/rany2/edge-tts) 提供了类似微软tts的能力
307
+ [azure-tts](https://techcommunity.microsoft.com/t5/ai-azure-ai-services-blog/9-more-realistic-ai-voices-for-conversations-now-generally/ba-p/4099471) 提供了微软 azure tts 的能力
308
+ [openai-tts](https://platform.openai.com/docs/guides/text-to-speech) 提供了类似 openai tts 的能力
307
309
 
308
310
  #### Usage
309
311
 
@@ -322,7 +324,7 @@ docker build --build-arg PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
322
324
  edge-tts --list-voices
323
325
  ```
324
326
 
325
- #### 在容器中使用edge-tts
327
+ #### 在容器中使用 edge-tts/azure-tts/openai-tts
326
328
 
327
329
  由于 Edge TTS 启动了一个本地的 HTTP 服务,所以需要将容器的端口映射到宿主机上,并且指定本地机器的 hostname:
328
330
 
@@ -271,9 +271,11 @@ docker build --build-arg PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
271
271
 
272
272
  ### 第三方 TTS
273
273
 
274
- 我们目前支持两种第三方 TTS:edge/openai
274
+ 我们目前支持是三种第三方 TTS:edge/openai/azure
275
275
 
276
276
  [edge-tts](https://github.com/rany2/edge-tts) 提供了类似微软tts的能力
277
+ [azure-tts](https://techcommunity.microsoft.com/t5/ai-azure-ai-services-blog/9-more-realistic-ai-voices-for-conversations-now-generally/ba-p/4099471) 提供了微软 azure tts 的能力
278
+ [openai-tts](https://platform.openai.com/docs/guides/text-to-speech) 提供了类似 openai tts 的能力
277
279
 
278
280
  #### Usage
279
281
 
@@ -292,7 +294,7 @@ docker build --build-arg PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
292
294
  edge-tts --list-voices
293
295
  ```
294
296
 
295
- #### 在容器中使用edge-tts
297
+ #### 在容器中使用 edge-tts/azure-tts/openai-tts
296
298
 
297
299
  由于 Edge TTS 启动了一个本地的 HTTP 服务,所以需要将容器的端口映射到宿主机上,并且指定本地机器的 hostname:
298
300
 
@@ -31,7 +31,7 @@ dependencies = [
31
31
  "azure-cognitiveservices-speech>=1.37.0",
32
32
  ]
33
33
  dynamic = []
34
- version = "2.40"
34
+ version = "2.41"
35
35
 
36
36
  [project.license]
37
37
  text = "MIT"
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