nonebot-plugin-githubmodels 1.0.0__tar.gz → 1.0.2__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.
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/PKG-INFO +6 -5
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/pyproject.toml +6 -5
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/README.md +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/__init__.py +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/config.py +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/context_manager.py +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/css/dark.css +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/css/light.css +0 -0
- {nonebot_plugin_githubmodels-1.0.0 → nonebot_plugin_githubmodels-1.0.2}/src/nonebot_plugin_githubmodels/openai_handler.py +0 -0
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nonebot-plugin-githubmodels
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: NoneBot 集成 GitHub Copilot 和 OpenAI 的 AI 代码生成模型插件
|
|
5
5
|
Author: lyqgzbl
|
|
6
6
|
Author-email: lyqgzbl <122811297+lyqgzbl@users.noreply.github.com>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Requires-Dist: nonebot2>=2.2.1,<3.0.0
|
|
9
|
-
Requires-Dist:
|
|
9
|
+
Requires-Dist: aiohttp>=3.8.0,<4.0.0
|
|
10
|
+
Requires-Dist: azure-ai-inference>=1.0.0b1,<2.0.0
|
|
10
11
|
Requires-Dist: nonebot-plugin-htmlrender>=0.5.0,<1.0.0
|
|
11
12
|
Requires-Dist: nonebot-plugin-alconna>=0.54.0,<1.0.0
|
|
12
13
|
Requires-Python: >=3.10, <4.0
|
|
13
|
-
Project-URL: documentation, https://github.com/lyqgzbl/nonebot-plugin-
|
|
14
|
-
Project-URL: homepage, https://github.com/lyqgzbl/nonebot-plugin-
|
|
15
|
-
Project-URL: repository, https://github.com/lyqgzbl/nonebot-plugin-
|
|
14
|
+
Project-URL: documentation, https://github.com/lyqgzbl/nonebot-plugin-githubmodels#readme
|
|
15
|
+
Project-URL: homepage, https://github.com/lyqgzbl/nonebot-plugin-githubmodels
|
|
16
|
+
Project-URL: repository, https://github.com/lyqgzbl/nonebot-plugin-githubmodels
|
|
16
17
|
Description-Content-Type: text/markdown
|
|
17
18
|
|
|
18
19
|
<!-- markdownlint-disable MD033 MD036 MD041 -->
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "nonebot-plugin-githubmodels"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.2"
|
|
4
4
|
description = "NoneBot 集成 GitHub Copilot 和 OpenAI 的 AI 代码生成模型插件"
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -10,15 +10,16 @@ requires-python = ">=3.10, <4.0"
|
|
|
10
10
|
license = "MIT"
|
|
11
11
|
dependencies = [
|
|
12
12
|
"nonebot2 >=2.2.1, <3.0.0",
|
|
13
|
-
"
|
|
13
|
+
"aiohttp >=3.8.0, <4.0.0",
|
|
14
|
+
"azure-ai-inference >=1.0.0b1, <2.0.0",
|
|
14
15
|
"nonebot-plugin-htmlrender >=0.5.0, <1.0.0",
|
|
15
16
|
"nonebot-plugin-alconna >=0.54.0, <1.0.0",
|
|
16
17
|
]
|
|
17
18
|
|
|
18
19
|
[project.urls]
|
|
19
|
-
homepage = "https://github.com/lyqgzbl/nonebot-plugin-
|
|
20
|
-
repository = "https://github.com/lyqgzbl/nonebot-plugin-
|
|
21
|
-
documentation = "https://github.com/lyqgzbl/nonebot-plugin-
|
|
20
|
+
homepage = "https://github.com/lyqgzbl/nonebot-plugin-githubmodels"
|
|
21
|
+
repository = "https://github.com/lyqgzbl/nonebot-plugin-githubmodels"
|
|
22
|
+
documentation = "https://github.com/lyqgzbl/nonebot-plugin-githubmodels#readme"
|
|
22
23
|
|
|
23
24
|
[build-system]
|
|
24
25
|
requires = ["uv_build>=0.8.17,<0.9.0"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|