code-interpreter
code-interpreter copied to clipboard
Python & JS/TS SDK for running AI-generated code/code interpreting in your AI app
Results
32
code-interpreter issues
Sort by
recently updated
recently updated
newest added
Breaking example: ```py import matplotlib.pyplot as plt import pandas as pd # Create a simple DataFrame with an additional column for standard deviation (error) data = { "Category": ["A", "B",...
bug
Not working snippet: ```py import matplotlib.pyplot as plt import numpy as np data = np.random.randn(100) bp = plt.boxplot(data, patch_artist=True) plt.show() ``` Working snippet: ```py import matplotlib.pyplot as plt import numpy...
bug