Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: shroominic/codeinterpreter-api
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.16
Choose a base ref
...
head repository: shroominic/codeinterpreter-api
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 8 commits
  • 9 files changed
  • 1 contributor

Commits on Apr 4, 2024

  1. 📝 update README

    shroominic committed Apr 4, 2024
    Copy the full SHA
    118530e View commit details

Commits on Apr 10, 2024

  1. Copy the full SHA
    52547b9 View commit details

Commits on Nov 1, 2024

  1. Copy the full SHA
    d72dd84 View commit details

Commits on Nov 2, 2024

  1. Copy the full SHA
    39f9519 View commit details

Commits on Nov 7, 2024

  1. Copy the full SHA
    619dc43 View commit details
  2. Copy the full SHA
    545f413 View commit details
  3. fix typing issue

    shroominic committed Nov 7, 2024
    Copy the full SHA
    4600bec View commit details
  4. Copy the full SHA
    9482d36 View commit details
Showing with 253 additions and 211 deletions.
  1. +0 −1 .python-version
  2. +0 −1 README.md
  3. +6 −5 pyproject.toml
  4. +162 −151 requirements-dev.lock
  5. +60 −40 requirements.lock
  6. +10 −0 src/codeinterpreterapi/chains/modifications_check.py
  7. +4 −4 src/codeinterpreterapi/config.py
  8. +1 −1 src/codeinterpreterapi/schema.py
  9. +10 −8 src/codeinterpreterapi/session.py
1 change: 0 additions & 1 deletion .python-version

This file was deleted.

1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# 👾 Code Interpreter API

[![Version](https://badge.fury.io/py/codeinterpreterapi.svg)](https://badge.fury.io/py/codeinterpreterapi)
[![code-check](https://github.com/shroominic/codeinterpreter-api/actions/workflows/code-check.yml/badge.svg)](https://github.com/shroominic/codeinterpreter-api/actions/workflows/code-check.yml)
![Downloads](https://img.shields.io/pypi/dm/codeinterpreterapi)
![License](https://img.shields.io/pypi/l/codeinterpreterapi)
![PyVersion](https://img.shields.io/pypi/pyversions/codeinterpreterapi)
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
[project]
name = "codeinterpreterapi"
version = "0.1.16"
version = "0.1.20"
description = "CodeInterpreterAPI is an (unofficial) open source python interface for the ChatGPT CodeInterpreter."
authors = [{ name = "Shroominic", email = "contact@shroominic.com" }]
dependencies = [
"langchain-openai>=0.1.1",
"codeboxapi>=0.1.19",
"langchain>=0.1.14",
"langchain>=0.1, <0.2",
"langchain_openai",
"codeboxapi==0.1.19",
"pyzmq==25.1.2",
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.9.7, <3.12"
requires-python = ">= 3.9.7, <3.13"
keywords = [
"codeinterpreter",
"chatgpt",
Loading