We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d293f27 commit cd5ff1dCopy full SHA for cd5ff1d
2 files changed
integrations/github/src/haystack_integrations/components/connectors/github/repo_forker.py
@@ -41,7 +41,7 @@ class GitHubRepoForker:
41
def __init__(
42
self,
43
*,
44
- github_token: Secret = Secret.from_env_var("GITHUB_TOKEN"),
+ github_token: Optional[Secret] = None,
45
raise_on_failure: bool = True,
46
wait_for_completion: bool = False,
47
max_wait_seconds: int = 300,
integrations/github/src/haystack_integrations/tools/github/repo_forker_tool.py
@@ -58,9 +58,6 @@ def __init__(
58
"documents": {"handler": custom_handler}
59
}
60
"""
61
- self.name = name
62
- self.description = description
63
- self.parameters = parameters
64
self.github_token = github_token
65
self.raise_on_failure = raise_on_failure
66
self.outputs_to_string = outputs_to_string
0 commit comments