Skip to content

Commit

Permalink
🧼 cleanup docs
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Jul 16, 2023
1 parent ae0deb8 commit b706710
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,20 @@
A LangChain implementation of the ChatGPT Code Interpreter.
Using CodeBoxes as backend for sandboxed python code execution.
[CodeBox](https://github.com/shroominic/codebox-api/tree/main) is the simplest cloud infrastructure for your LLM Apps.
You can run everything local using your own OpenAI API Key.
You can run everything local except the LLM using your own OpenAI API Key.

## Features

- Dataset Analysis, Stock Charting, Image Manipulation, ....
- Internet access and auto Python package installation
- Input `text + files` -> Receive `text + files`
- Run everything local except the OpenAI API (OpenOrca or others coming soon)
- Use CodeBox API for easy scaling in production (coming soon)

## Installation

Get your OpenAI API Key [here](https://platform.openai.com/account/api-keys) and install the package.

```bash
pip install codeinterpreterapi
```
Expand Down Expand Up @@ -38,7 +48,8 @@ async def main():


if __name__ == "__main__":
import asyncio
import asyncio, os
os.environ["OPENAI_API_KEY"] = "sk-*********" # or .env file

asyncio.run(main())

Expand All @@ -51,8 +62,8 @@ if __name__ == "__main__":
## Production

In case you want to deploy to production you can use the CodeBox API for easy scaling.
Please contact me if you want to use the CodeBox API in production.
Its currently in early development and not everything is automated yet.

Please contact me if you interested in this, because it's still in early development.

## Contributing

Expand All @@ -73,6 +84,5 @@ Thanks!

## Contact

You can contact me at [pleurae-berets.0u@icloud.com](mailto:pleurae-berets.0u@icloud.com)
Sorry for the weird email address but I don't want to get spammed so I can deactivate it if necessary.
But you can also contact me on [Twitter](https://twitter.com/shroominic) or [Discord](https://gptassistant.app/community).
You can contact me at [contact@shroominic.com](mailto:contact@shroominic.com).
But I prefer to use [Twitter](https://twitter.com/shroominic) or [Discord](https://gptassistant.app/community) DMs.

0 comments on commit b706710

Please sign in to comment.