File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ def register_prompts(mcp):
2323
2424 @mcp .prompt ()
2525 async def rca (
26- dci_job_id : str = Annotated [
26+ dci_job_id : Annotated [
2727 str , "The DCI job ID for which to perform root cause analysis (RCA)."
2828 ],
2929 ) -> str :
@@ -50,7 +50,7 @@ async def rca(
5050
5151 @mcp .prompt ()
5252 async def weekly (
53- subject : str = Annotated [
53+ subject : Annotated [
5454 str , "The subject of the analysis (team name or id, remoteci name or id)."
5555 ],
5656 ) -> str :
@@ -67,7 +67,7 @@ async def weekly(
6767
6868 @mcp .prompt ()
6969 async def biweekly (
70- subject : str = Annotated [
70+ subject : Annotated [
7171 str , "The subject of the analysis (team name or id, remoteci name or id)."
7272 ],
7373 ) -> str :
@@ -84,9 +84,7 @@ async def biweekly(
8484
8585 @mcp .prompt ()
8686 async def quarterly (
87- subject : str = Annotated [
88- str , "The subject of the analysis (remoteci name or id)."
89- ],
87+ subject : Annotated [str , "The subject of the analysis (remoteci name or id)." ],
9088 ) -> str :
9189 """
9290 Prompt for instructions on how to analyze DCI jobs for a quarter (3 months).
You can’t perform that action at this time.
0 commit comments