langchain-githubcopilot-chat 0.6.0__tar.gz → 0.6.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.
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/PKG-INFO +5 -5
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/pyproject.toml +7 -4
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/LICENSE +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/LICENSE.langchain +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/README.md +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/langchain_githubcopilot_chat/__init__.py +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/langchain_githubcopilot_chat/auth.py +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/langchain_githubcopilot_chat/chat_models.py +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/langchain_githubcopilot_chat/embeddings.py +0 -0
- {langchain_githubcopilot_chat-0.6.0 → langchain_githubcopilot_chat-0.6.1}/langchain_githubcopilot_chat/py.typed +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: langchain-githubcopilot-chat
|
|
3
|
-
Version: 0.6.
|
|
3
|
+
Version: 0.6.1
|
|
4
4
|
Summary: An integration package connecting GithubcopilotChat and LangChain
|
|
5
|
-
Home-page: https://github.com/langchain-
|
|
5
|
+
Home-page: https://github.com/BANG404/langchain-githubcopilot-chat
|
|
6
6
|
License: MIT
|
|
7
7
|
Author: YIhan Wu
|
|
8
8
|
Author-email: iumm@ibat.ac.cn
|
|
@@ -16,9 +16,9 @@ Classifier: Programming Language :: Python :: 3.13
|
|
|
16
16
|
Requires-Dist: httpx (>=0.28.1)
|
|
17
17
|
Requires-Dist: langchain-core (>=1.1.0,<2.0.0)
|
|
18
18
|
Requires-Dist: langchain-openai (>=0.3.0,<2.0.0)
|
|
19
|
-
Project-URL: Repository, https://github.com/langchain-
|
|
20
|
-
Project-URL: Release Notes, https://github.com/langchain-
|
|
21
|
-
Project-URL: Source Code, https://github.com/langchain-
|
|
19
|
+
Project-URL: Repository, https://github.com/BANG404/langchain-githubcopilot-chat
|
|
20
|
+
Project-URL: Release Notes, https://github.com/BANG404/langchain-githubcopilot-chat/releases
|
|
21
|
+
Project-URL: Source Code, https://github.com/BANG404/langchain-githubcopilot-chat
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
# LangChain GitHub Copilot Chat
|
|
@@ -4,19 +4,19 @@ build-backend = "poetry.core.masonry.api"
|
|
|
4
4
|
|
|
5
5
|
[tool.poetry]
|
|
6
6
|
name = "langchain-githubcopilot-chat"
|
|
7
|
-
version = "0.6.
|
|
7
|
+
version = "0.6.1"
|
|
8
8
|
description = "An integration package connecting GithubcopilotChat and LangChain"
|
|
9
9
|
authors = ["YIhan Wu <iumm@ibat.ac.cn>"]
|
|
10
10
|
readme = "README.md"
|
|
11
|
-
repository = "https://github.com/langchain-
|
|
11
|
+
repository = "https://github.com/BANG404/langchain-githubcopilot-chat"
|
|
12
12
|
license = "MIT"
|
|
13
13
|
|
|
14
14
|
[tool.mypy]
|
|
15
15
|
disallow_untyped_defs = "True"
|
|
16
16
|
|
|
17
17
|
[tool.poetry.urls]
|
|
18
|
-
"Source Code" = "https://github.com/langchain-
|
|
19
|
-
"Release Notes" = "https://github.com/langchain-
|
|
18
|
+
"Source Code" = "https://github.com/BANG404/langchain-githubcopilot-chat"
|
|
19
|
+
"Release Notes" = "https://github.com/BANG404/langchain-githubcopilot-chat/releases"
|
|
20
20
|
|
|
21
21
|
[tool.poetry.dependencies]
|
|
22
22
|
python = ">=3.10,<4.0"
|
|
@@ -70,5 +70,8 @@ codespell = "^2.2.6"
|
|
|
70
70
|
[tool.poetry.group.lint.dependencies]
|
|
71
71
|
ruff = "^0.5"
|
|
72
72
|
|
|
73
|
+
[tool.poetry.group.typing]
|
|
74
|
+
optional = true
|
|
75
|
+
|
|
73
76
|
[tool.poetry.group.typing.dependencies]
|
|
74
77
|
mypy = "^1.10"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|