File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,8 @@ def run_sync(session: CodeInterpreterSession) -> bool:
2626 assert (
2727 "3.1"
2828 in session .generate_response (
29- "Compute pi using Monte Carlo simulation in Python and show me the result."
29+ "Compute pi using Monte Carlo simulation in "
30+ "Python and show me the result."
3031 ).content
3132 )
3233
@@ -63,7 +64,8 @@ async def run_async(session: CodeInterpreterSession) -> bool:
6364 "3.1"
6465 in (
6566 await session .agenerate_response (
66- "Compute pi using Monte Carlo simulation in Python and show me the result."
67+ "Compute pi using Monte Carlo simulation in "
68+ "Python and show me the result."
6769 )
6870 ).content
6971 )
@@ -81,7 +83,7 @@ async def run_async(session: CodeInterpreterSession) -> bool:
8183 )
8284
8385 assert (
84- ".jpeg "
86+ ".png "
8587 in (
8688 await session .agenerate_response (
8789 "Plot the current stock price of Tesla." ,
You can’t perform that action at this time.
0 commit comments