mirror of
https://github.com/hwchase17/langchain
synced 2024-11-04 06:00:26 +00:00
ed58eeb9c5
Moved the following modules to new package langchain-community in a backwards compatible fashion: ``` mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community mv langchain/langchain/adapters community/langchain_community mv langchain/langchain/callbacks community/langchain_community/callbacks mv langchain/langchain/chat_loaders community/langchain_community mv langchain/langchain/chat_models community/langchain_community mv langchain/langchain/document_loaders community/langchain_community mv langchain/langchain/docstore community/langchain_community mv langchain/langchain/document_transformers community/langchain_community mv langchain/langchain/embeddings community/langchain_community mv langchain/langchain/graphs community/langchain_community mv langchain/langchain/llms community/langchain_community mv langchain/langchain/memory/chat_message_histories community/langchain_community mv langchain/langchain/retrievers community/langchain_community mv langchain/langchain/storage community/langchain_community mv langchain/langchain/tools community/langchain_community mv langchain/langchain/utilities community/langchain_community mv langchain/langchain/vectorstores community/langchain_community mv langchain/langchain/agents/agent_toolkits community/langchain_community mv langchain/langchain/cache.py community/langchain_community ``` Moved the following to core ``` mv langchain/langchain/utils/json_schema.py core/langchain_core/utils mv langchain/langchain/utils/html.py core/langchain_core/utils mv langchain/langchain/utils/strings.py core/langchain_core/utils cat langchain/langchain/utils/env.py >> core/langchain_core/utils/env.py rm langchain/langchain/utils/env.py ``` See .scripts/community_split/script_integrations.sh for all changes
95 lines
2.8 KiB
Python
95 lines
2.8 KiB
Python
"""GitHub Toolkit."""
|
|
from typing import Dict, List
|
|
|
|
from langchain_community.agent_toolkits.base import BaseToolkit
|
|
from langchain_community.tools import BaseTool
|
|
from langchain_community.tools.gitlab.prompt import (
|
|
COMMENT_ON_ISSUE_PROMPT,
|
|
CREATE_FILE_PROMPT,
|
|
CREATE_PULL_REQUEST_PROMPT,
|
|
DELETE_FILE_PROMPT,
|
|
GET_ISSUE_PROMPT,
|
|
GET_ISSUES_PROMPT,
|
|
READ_FILE_PROMPT,
|
|
UPDATE_FILE_PROMPT,
|
|
)
|
|
from langchain_community.tools.gitlab.tool import GitLabAction
|
|
from langchain_community.utilities.gitlab import GitLabAPIWrapper
|
|
|
|
|
|
class GitLabToolkit(BaseToolkit):
|
|
"""GitLab Toolkit.
|
|
|
|
*Security Note*: This toolkit contains tools that can read and modify
|
|
the state of a service; e.g., by creating, deleting, or updating,
|
|
reading underlying data.
|
|
|
|
For example, this toolkit can be used to create issues, pull requests,
|
|
and comments on GitLab.
|
|
|
|
See https://python.langchain.com/docs/security for more information.
|
|
"""
|
|
|
|
tools: List[BaseTool] = []
|
|
|
|
@classmethod
|
|
def from_gitlab_api_wrapper(
|
|
cls, gitlab_api_wrapper: GitLabAPIWrapper
|
|
) -> "GitLabToolkit":
|
|
operations: List[Dict] = [
|
|
{
|
|
"mode": "get_issues",
|
|
"name": "Get Issues",
|
|
"description": GET_ISSUES_PROMPT,
|
|
},
|
|
{
|
|
"mode": "get_issue",
|
|
"name": "Get Issue",
|
|
"description": GET_ISSUE_PROMPT,
|
|
},
|
|
{
|
|
"mode": "comment_on_issue",
|
|
"name": "Comment on Issue",
|
|
"description": COMMENT_ON_ISSUE_PROMPT,
|
|
},
|
|
{
|
|
"mode": "create_pull_request",
|
|
"name": "Create Pull Request",
|
|
"description": CREATE_PULL_REQUEST_PROMPT,
|
|
},
|
|
{
|
|
"mode": "create_file",
|
|
"name": "Create File",
|
|
"description": CREATE_FILE_PROMPT,
|
|
},
|
|
{
|
|
"mode": "read_file",
|
|
"name": "Read File",
|
|
"description": READ_FILE_PROMPT,
|
|
},
|
|
{
|
|
"mode": "update_file",
|
|
"name": "Update File",
|
|
"description": UPDATE_FILE_PROMPT,
|
|
},
|
|
{
|
|
"mode": "delete_file",
|
|
"name": "Delete File",
|
|
"description": DELETE_FILE_PROMPT,
|
|
},
|
|
]
|
|
tools = [
|
|
GitLabAction(
|
|
name=action["name"],
|
|
description=action["description"],
|
|
mode=action["mode"],
|
|
api_wrapper=gitlab_api_wrapper,
|
|
)
|
|
for action in operations
|
|
]
|
|
return cls(tools=tools)
|
|
|
|
def get_tools(self) -> List[BaseTool]:
|
|
"""Get the tools in the toolkit."""
|
|
return self.tools
|