Metadata-Version: 2.4
Name: pycodei
Version: 0.1.8
Summary: An interactive Python code interpreter designed to collaborate with OpenAI and Azure AI models.
Author: Kentaro Aoki
License: MIT
Project-URL: Homepage, https://github.com/KentaroAOKI/python_code_interpreter
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: anyio
Requires-Dist: ipykernel
Requires-Dist: jupyter
Requires-Dist: matplotlib
Requires-Dist: mcp
Requires-Dist: nbformat
Requires-Dist: numpy
Requires-Dist: openai
Requires-Dist: pandas
Requires-Dist: papermill==2.6.0
Requires-Dist: python-dotenv
Requires-Dist: requests
Requires-Dist: scikit-learn
Requires-Dist: seaborn
Requires-Dist: colorama
Requires-Dist: rich
Requires-Dist: pyfiglet
Requires-Dist: prompt_toolkit
Dynamic: license-file

# PyCodeI (Python Code Interpreter)

This project provides a Python code interpreter that interacts with large language models trained by OpenAI. This interpreter is designed to run Python code in a notebook environment, enabling data analysis, visualization, and prediction. The Python code runs interactively, but in the notebook from the beginning each time.

## Features

- **Data Analysis and Visualization**: Analyze datasets and create appropriate graphs for visualization.
- **Trend Extraction and Future Projections**: Extract trends from data and provide future projections.
- **Wide Range of Scientific Topics**: Provide information on various scientific topics, including NLP, machine learning, mathematics, physics, chemistry, and biology.
- **Secure Handling of User Files**: Store and persist user files in the `/mnt/data` drive.

## Installation

### Quick start (PyPI)
```bash
pip install pycodei
```
This installs the published package and exposes the `pycodei` CLI on your PATH.

### Local development workflow
1. Clone the repository:
    ```bash
    git clone https://github.com/KentaroAOKI/python_code_interpreter.git
    cd python_code_interpreter
    ```

2. Install in editable mode (also registers the CLI):
    ```bash
    pip install -e .
    ```

3. Create your user configuration file:
    ```bash
    mkdir -p ~/.pycodei
    cat > ~/.pycodei/config.json <<'EOF'
    {
      "DEPLOYMENT_NAME": "gpt-4o-mini",
      "PYCODEI_CLIENT": "azure",
      "AZURE_OPENAI_API_KEY": "<your azure openai api key>",
      "AZURE_OPENAI_ENDPOINT": "https://<your endpoint>.openai.azure.com/",
      "OPENAI_API_VERSION": "2024-10-01-preview",
      "OPENAI_API_KEY": "<your openai api key>"
    }
    EOF
    ```
    Running `pycodei --help` will also create this file with placeholder values if it does not exist.

## Usage
To use the Python Code Interpreter, run the following command (replace the prompt text with your task):
```bash
pycodei "Retrieve NVIDIA stock prices from Jan-Mar 2023 and predict April onward."
```
Use `pycodei --help` to see optional flags such as `--deployment-name`, which overrides the value in `~/.pycodei/config.json`.

### Example
You can also start without an inline prompt; the CLI will ask for one interactively:

```bash
# Start CLI and respond to the input prompt
pycodei
```
A notebook file with the execution date and time is created in the results directory. You can view it with Visual Studio Code's Jupyter extension.

- results/result_20250113-082727.ipynb  
Notebook where data analysis steps were recorded.
- results/result_20250113-082727.json  
Log of messages sent to API.


#### Example 1
"Retrieve NVIDIA stock prices from Yahoo for January to March 2023 and predict prices from April 2023 onwards."  
Result: [sample_01.ipynb](https://github.com/KentaroAOKI/python_code_interpreter/blob/main/sample_results/sample_01.ipynb)

#### Example 2
"Determine whether the data in /mnt/data/diagnosis.csv is malignant or benign. To make a decision, use the model learned using the load_breast_cancer data available from scikit-learn."  
Result: [sample_02.ipynb](https://github.com/KentaroAOKI/python_code_interpreter/blob/main/sample_results/sample_02.ipynb)

#### Example 3
"2023年の1月から3月のNVIDIA株価をYahooから取得して、2023年4月以降の株価を予測してください。"  
Result: [sample_03.ipynb](https://github.com/KentaroAOKI/python_code_interpreter/blob/main/sample_results/sample_03.ipynb)

#### Example 4
"/mnt/data/diagnosis.csv のデータが悪性か良性か判断してください。判断は、scikit-learn から取得できる load_breast_cancer データで学習したモデルを使ってください。日本語で説明してください。"  
Result: [sample_04.ipynb](https://github.com/KentaroAOKI/python_code_interpreter/blob/main/sample_results/sample_04.ipynb)

## Configuration
Runtime credentials are read from `~/.pycodei/config.json`. Example:

```json
{
  "DEPLOYMENT_NAME": "gpt-4o-mini",
  "PYCODEI_CLIENT": "azure",
  "AZURE_OPENAI_API_KEY": "<your azure openai api key>",
  "AZURE_OPENAI_ENDPOINT": "https://<your endpoint>.openai.azure.com/",
  "OPENAI_API_VERSION": "2024-10-01-preview",
  "OPENAI_API_KEY": "<your openai api key>",
  "mcpServers": {
    "filesystem": {
      "disabled": true,
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/share"
      ],
      "env": {
        "FS_ROOT": "/path/to/share"
      }
    }
  }
}
```
Set `"PYCODEI_CLIENT"` to `azure` (default) or `openai` to choose which SDK client the interpreter instantiates; you can temporarily override it with the `PYCODEI_CLIENT` environment variable. All other keys map directly to the environment variables expected by the OpenAI/Azure SDKs. Leaving a value blank may cause authentication failures, so be sure to populate the entries relevant to your deployment.

### Optional: PYCODEI.md
If you keep a `PYCODEI.md` file, its contents are appended to the system prompt every time `pycodei` starts. Place the file in one of these locations (checked in order): `~/.pycodei/PYCODEI.md`, the directory where the package is installed (alongside `python_code_interpreter.py`), or your current working directory. Use it for persistent guardrails, safety rules, or project-specific requirements.

### Optional: MCP servers
`pycodei` can now connect to multiple [Model Context Protocol](https://modelcontextprotocol.io/) servers using the same schema. Add them under the `"mcpServers"` key in `~/.pycodei/config.json` and set `"disabled": false` for the entries you want to enable. Example:

```json
"mcpServers": {
  "filesystem": {
    "disabled": false,
    "command": "npx",
    "args": [
      "-y",
      "@modelcontextprotocol/server-filesystem",
      "/Users/me/workspace"
    ],
    "env": {
      "FS_ROOT": "/Users/me/workspace"
    }
  },
  "custom_tool": {
    "command": "/usr/local/bin/python",
    "args": [
      "/path/to/server.py"
    ],
    "cwd": "/path/to",
    "transport": "stdio"
  }
}
```

When `pycodei` starts it will spin up each enabled server, discover its MCP tools, and register them as callable functions. Tool names are derived from `server_name__tool_name` and become available to the model alongside the built-in `run_python` tool. SSE (`transport: "sse"`) and WebSocket (`transport: "websocket"`) endpoints are also supported if you prefer remote servers—specify a `url` instead of a `command`.


## License

This project is licensed under the MIT License. See the LICENSE file for details.
