bia-bob icon indicating copy to clipboard operation
bia-bob copied to clipboard

Chat history formatting is not very readable

Open tischi opened this issue 1 year ago • 2 comments

Chat history:
user
Load the blobs.tif image file and show it.
assistant
from skimage.io import imread
import stackview

image = imread("blobs.tif")
stackview.insight(image)
user
Load the blobs.tif image file and show it.
assistant
from skimage import io

image = io.imread("blobs.tif")
io.imshow(image)
io.show()
user
Write python code to load the blobs.tif image file and show it.
assistant
from skimage.io import imread
import matplotlib.pyplot as plt

image = imread("blobs.tif")
plt.imshow(image, cmap='gray')
plt.axis('off')
plt.show()


Full response:
 from skimage.io import imread
import matplotlib.pyplot as plt

image = imread("blobs.tif")
plt.imshow(image)
plt.axis('off')
plt.show()
from skimage.io import imread import matplotlib.pyplot as plt

image = imread("blobs.tif") plt.imshow(image) plt.axis('off') plt.show()

We should format this better such that it is easier to see where the user and assistant are saying something.

tischi avatar Oct 25 '23 12:10 tischi