langchain-githubcopilot-chat 0.1.0__py3-none-any.whl
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/__init__.py +31 -0
- langchain_githubcopilot_chat/chat_models.py +923 -0
- langchain_githubcopilot_chat/document_loaders.py +73 -0
- langchain_githubcopilot_chat/embeddings.py +96 -0
- langchain_githubcopilot_chat/py.typed +0 -0
- langchain_githubcopilot_chat/retrievers.py +107 -0
- langchain_githubcopilot_chat/toolkits.py +72 -0
- langchain_githubcopilot_chat/tools.py +94 -0
- langchain_githubcopilot_chat/vectorstores.py +439 -0
- langchain_githubcopilot_chat-0.1.0.dist-info/LICENSE +21 -0
- langchain_githubcopilot_chat-0.1.0.dist-info/METADATA +70 -0
- langchain_githubcopilot_chat-0.1.0.dist-info/RECORD +13 -0
- langchain_githubcopilot_chat-0.1.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
from importlib import metadata
|
|
2
|
+
|
|
3
|
+
from langchain_githubcopilot_chat.chat_models import (
|
|
4
|
+
ChatGithubCopilot,
|
|
5
|
+
ChatGithubcopilotChat,
|
|
6
|
+
)
|
|
7
|
+
from langchain_githubcopilot_chat.document_loaders import GithubcopilotChatLoader
|
|
8
|
+
from langchain_githubcopilot_chat.embeddings import GithubcopilotChatEmbeddings
|
|
9
|
+
from langchain_githubcopilot_chat.retrievers import GithubcopilotChatRetriever
|
|
10
|
+
from langchain_githubcopilot_chat.toolkits import GithubcopilotChatToolkit
|
|
11
|
+
from langchain_githubcopilot_chat.tools import GithubcopilotChatTool
|
|
12
|
+
from langchain_githubcopilot_chat.vectorstores import GithubcopilotChatVectorStore
|
|
13
|
+
|
|
14
|
+
try:
|
|
15
|
+
__version__ = metadata.version(__package__)
|
|
16
|
+
except metadata.PackageNotFoundError:
|
|
17
|
+
# Case where package metadata is not available.
|
|
18
|
+
__version__ = ""
|
|
19
|
+
del metadata # optional, avoids polluting the results of dir(__package__)
|
|
20
|
+
|
|
21
|
+
__all__ = [
|
|
22
|
+
"ChatGithubCopilot",
|
|
23
|
+
"ChatGithubcopilotChat", # backwards-compatible alias
|
|
24
|
+
"GithubcopilotChatVectorStore",
|
|
25
|
+
"GithubcopilotChatEmbeddings",
|
|
26
|
+
"GithubcopilotChatLoader",
|
|
27
|
+
"GithubcopilotChatRetriever",
|
|
28
|
+
"GithubcopilotChatToolkit",
|
|
29
|
+
"GithubcopilotChatTool",
|
|
30
|
+
"__version__",
|
|
31
|
+
]
|