Skip to content

Commit 95bb046

Browse files
committed
Fix AI agent positional arguments
1 parent 2edb903 commit 95bb046

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

dagger/src/fraud_simulation/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ async def analyze_results(self, summary: dagger.File) -> str:
5151
dag.llm()
5252
.with_env(
5353
dag.env()
54-
.with_file_input("summary", summary, description="Fraud summary file")
55-
.with_string_output("insights", description="AI generated insights")
54+
.with_file_input("summary", summary, "Fraud summary file")
55+
.with_string_output("insights", "AI generated insights")
5656
)
5757
.with_prompt("""
5858
Review this fraud summary:

0 commit comments

Comments
 (0)