yaicli 0.7.0__tar.gz → 0.7.1__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 (48) hide show
  1. {yaicli-0.7.0 → yaicli-0.7.1}/PKG-INFO +4 -1
  2. {yaicli-0.7.0 → yaicli-0.7.1}/pyproject.toml +5 -1
  3. {yaicli-0.7.0 → yaicli-0.7.1}/.gitignore +0 -0
  4. {yaicli-0.7.0 → yaicli-0.7.1}/LICENSE +0 -0
  5. {yaicli-0.7.0 → yaicli-0.7.1}/README.md +0 -0
  6. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/__init__.py +0 -0
  7. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/chat.py +0 -0
  8. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/cli.py +0 -0
  9. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/config.py +0 -0
  10. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/console.py +0 -0
  11. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/const.py +0 -0
  12. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/entry.py +0 -0
  13. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/exceptions.py +0 -0
  14. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/functions/__init__.py +0 -0
  15. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/functions/buildin/execute_shell_command.py +0 -0
  16. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/history.py +0 -0
  17. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/__init__.py +0 -0
  18. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/client.py +0 -0
  19. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/provider.py +0 -0
  20. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/ai21_provider.py +0 -0
  21. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/chatglm_provider.py +0 -0
  22. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/chutes_provider.py +0 -0
  23. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/cohere_provider.py +0 -0
  24. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/deepseek_provider.py +0 -0
  25. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/doubao_provider.py +0 -0
  26. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/gemini_provider.py +0 -0
  27. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/groq_provider.py +0 -0
  28. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/huggingface_provider.py +0 -0
  29. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/infiniai_provider.py +0 -0
  30. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/minimax_provider.py +0 -0
  31. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/modelscope_provider.py +0 -0
  32. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/ollama_provider.py +0 -0
  33. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/openai_provider.py +0 -0
  34. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/openrouter_provider.py +0 -0
  35. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/sambanova_provider.py +0 -0
  36. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/siliconflow_provider.py +0 -0
  37. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/targon_provider.py +0 -0
  38. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/vertexai_provider.py +0 -0
  39. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/xai_provider.py +0 -0
  40. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/llms/providers/yi_provider.py +0 -0
  41. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/printer.py +0 -0
  42. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/render.py +0 -0
  43. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/role.py +0 -0
  44. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/schemas.py +0 -0
  45. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/tools/__init__.py +0 -0
  46. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/tools/function.py +0 -0
  47. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/tools/mcp.py +0 -0
  48. {yaicli-0.7.0 → yaicli-0.7.1}/yaicli/utils.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: yaicli
3
- Version: 0.7.0
3
+ Version: 0.7.1
4
4
  Summary: A simple CLI tool to interact with LLM
5
5
  Project-URL: Homepage, https://github.com/belingud/yaicli
6
6
  Project-URL: Repository, https://github.com/belingud/yaicli
@@ -215,6 +215,7 @@ Classifier: Programming Language :: Python :: 3
215
215
  Requires-Python: >=3.10
216
216
  Requires-Dist: click>=8.1.8
217
217
  Requires-Dist: distro>=1.9.0
218
+ Requires-Dist: fastmcp>=2.9.2
218
219
  Requires-Dist: httpx>=0.28.1
219
220
  Requires-Dist: instructor>=1.7.9
220
221
  Requires-Dist: json-repair>=0.44.1
@@ -237,6 +238,8 @@ Provides-Extra: gemini
237
238
  Requires-Dist: google-genai>=1.20.0; extra == 'gemini'
238
239
  Provides-Extra: huggingface
239
240
  Requires-Dist: huggingface-hub>=0.33.0; extra == 'huggingface'
241
+ Provides-Extra: mistral
242
+ Requires-Dist: mistralai>=1.8.2; extra == 'mistral'
240
243
  Provides-Extra: ollama
241
244
  Requires-Dist: ollama>=0.5.1; extra == 'ollama'
242
245
  Description-Content-Type: text/markdown
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "yaicli"
3
- version = "0.7.0"
3
+ version = "0.7.1"
4
4
  description = "A simple CLI tool to interact with LLM"
5
5
  authors = [{ name = "belingud", email = "im.victor@qq.com" }]
6
6
  readme = "README.md"
@@ -55,6 +55,7 @@ keywords = [
55
55
  dependencies = [
56
56
  "click>=8.1.8",
57
57
  "distro>=1.9.0",
58
+ "fastmcp>=2.9.2",
58
59
  "httpx>=0.28.1",
59
60
  "instructor>=1.7.9",
60
61
  "json-repair>=0.44.1",
@@ -88,6 +89,9 @@ gemini = ["google-genai>=1.20.0"]
88
89
  huggingface = [
89
90
  "huggingface-hub>=0.33.0",
90
91
  ]
92
+ mistral = [
93
+ "mistralai>=1.8.2",
94
+ ]
91
95
 
92
96
  [tool.pytest.ini_options]
93
97
  testpaths = ["tests"]
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