```diff
--- test_files/149-original.txt	2025-03-07 19:06:27
+++ test_files/149-modified.txt	2025-03-07 19:06:27
@@ -53,7 +53,7 @@
 Also print the link to the original idea on hackernews.""")
 # The config is the **second positional argument** to stream() or invoke()!
 events = graph.stream(
-    {"messages": [("user", user_input)]}, config, stream_mode="values"
+    {"messages": [("user", user_input)]}, config, stream_mode="values" # type: ignore
 )
 for event in events:
     event["messages"][-1].pretty_print()
\ No newline at end of file
@@ -68,7 +68,7 @@
             )
         ]
     },
-    config,
+    config, # type: ignore
     stream_mode="values",
 )
 for event in events:
\ No newline at end of file
```
