Skip to main content

Code Interpreter

Description

The Code Interpreter with Python allows you to execute Python code within the code blocks provided by agents in the CodeGPT chat

How to Use:

  • Select an Agent that has the "Code Interpreter" option
  • Request Python code within the CodeGPT Chat
  • Within a codeblock, click on the "Run Code" option
  • Wait for the code to be executed and then you will see the result

Example

In this example, we will select code from the editor and then ask the Python 3.10 Agent to create a Violin plot.

Prompt:

Chat CodeGPT: create a Violin plot

Context:

import numpy as np

# Sample data for three categories
category1 = np.random.normal(loc=0, scale=1, size=100) # Normal distribution centered at 0
category2 = np.random.normal(loc=5, scale=1.5, size=100) # Normal distribution centered at 5
category3 = np.random.normal(loc=10, scale=2, size=100) # Normal distribution centered at 10

data = [category1, category2, category3]



CodeGPT: Code Interpreter