mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-22 14:49:29 +00:00
Signed-off-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Eugene Yurtsev <eyurtsev@gmail.com> Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com> Co-authored-by: Dan O'Donovan <dan.odonovan@gmail.com> Co-authored-by: Tom Daniel Grande <tomdgrande@gmail.com> Co-authored-by: Grande <Tom.Daniel.Grande@statsbygg.no> Co-authored-by: Bagatur <baskaryan@gmail.com> Co-authored-by: ccurme <chester.curme@gmail.com> Co-authored-by: Harrison Chase <hw.chase.17@gmail.com> Co-authored-by: Tomaz Bratanic <bratanic.tomaz@gmail.com> Co-authored-by: ZhangShenao <15201440436@163.com> Co-authored-by: Friso H. Kingma <fhkingma@gmail.com> Co-authored-by: ChengZi <chen.zhang@zilliz.com> Co-authored-by: Nuno Campos <nuno@langchain.dev> Co-authored-by: Morgante Pell <morgantep@google.com>
35 lines
981 B
Python
35 lines
981 B
Python
"""
|
|
This tool allows agents to interact with the python-gitlab library
|
|
and operate on a GitLab repository.
|
|
|
|
To use this tool, you must first set as environment variables:
|
|
GITLAB_PRIVATE_ACCESS_TOKEN
|
|
GITLAB_REPOSITORY -> format: {owner}/{repo}
|
|
|
|
"""
|
|
|
|
from typing import Optional
|
|
|
|
from langchain_core.callbacks import CallbackManagerForToolRun
|
|
from langchain_core.tools import BaseTool
|
|
from pydantic import Field
|
|
|
|
from langchain_community.utilities.gitlab import GitLabAPIWrapper
|
|
|
|
|
|
class GitLabAction(BaseTool):
|
|
"""Tool for interacting with the GitLab API."""
|
|
|
|
api_wrapper: GitLabAPIWrapper = Field(default_factory=GitLabAPIWrapper) # type: ignore[arg-type]
|
|
mode: str
|
|
name: str = ""
|
|
description: str = ""
|
|
|
|
def _run(
|
|
self,
|
|
instructions: str,
|
|
run_manager: Optional[CallbackManagerForToolRun] = None,
|
|
) -> str:
|
|
"""Use the GitLab API to run an operation."""
|
|
return self.api_wrapper.run(self.mode, instructions)
|