Skip to content

Commit

Permalink
Github Tool type fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EugeneLightsOn committed Jan 31, 2025
1 parent d167c9d commit 65022b0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/backend/tools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from backend.tools.brave_search import BraveWebSearch
from backend.tools.calculator import Calculator
from backend.tools.files import ReadFileTool, SearchFileTool
from backend.tools.github import GithubAuth, GithubTool
from backend.tools.gmail import GmailAuth, GmailTool
from backend.tools.google_drive import GoogleDrive, GoogleDriveAuth
from backend.tools.google_search import GoogleWebSearch
Expand Down Expand Up @@ -32,4 +33,6 @@
"GmailAuth",
"SharepointTool",
"SharepointAuth",
"GithubTool",
"GithubAuth",
]
11 changes: 11 additions & 0 deletions src/backend/tools/github/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
from backend.tools.github.auth import GithubAuth
from backend.tools.github.constants import (
GITHUB_TOOL_ID,
)
from backend.tools.github.tool import GithubTool

__all__ = [
"GithubAuth",
"GithubTool",
"GITHUB_TOOL_ID",
]

0 comments on commit 65022b0

Please sign in to comment.