You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: a2a/git_issue_agent/git_issue_agent/config.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ class Settings(BaseSettings):
28
28
)
29
29
MCP_URL: str=Field(os.getenv("MCP_URL", "https://api.githubcopilot.com/mcp/"), description="Endpoint for an option MCP server")
30
30
SERVICE_PORT: int=Field(os.getenv("SERVICE_PORT", 8000), description="Port on which the service will run.")
31
-
GITHUB_TOKEN: str=Field(os.getenv("GITHUB_TOKEN", None), description="If not using agent with authorization, the default Github token to use")
31
+
GITHUB_TOKEN: Optional[str]=Field(os.getenv("GITHUB_TOKEN", None), description="If not using agent with authorization, the default Github token to use")
0 commit comments