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.
@@ -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
+ ]