Spaces:
Runtime error
Runtime error
Shroominic
commited on
Commit
·
b706710
1
Parent(s):
ae0deb8
🧼 cleanup docs
Browse files
README.md
CHANGED
|
@@ -3,10 +3,20 @@
|
|
| 3 |
A LangChain implementation of the ChatGPT Code Interpreter.
|
| 4 |
Using CodeBoxes as backend for sandboxed python code execution.
|
| 5 |
[CodeBox](https://github.com/shroominic/codebox-api/tree/main) is the simplest cloud infrastructure for your LLM Apps.
|
| 6 |
-
You can run everything local using your own OpenAI API Key.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
|
| 8 |
## Installation
|
| 9 |
|
|
|
|
|
|
|
| 10 |
```bash
|
| 11 |
pip install codeinterpreterapi
|
| 12 |
```
|
|
@@ -38,7 +48,8 @@ async def main():
|
|
| 38 |
|
| 39 |
|
| 40 |
if __name__ == "__main__":
|
| 41 |
-
import asyncio
|
|
|
|
| 42 |
|
| 43 |
asyncio.run(main())
|
| 44 |
|
|
@@ -51,8 +62,8 @@ if __name__ == "__main__":
|
|
| 51 |
## Production
|
| 52 |
|
| 53 |
In case you want to deploy to production you can use the CodeBox API for easy scaling.
|
| 54 |
-
|
| 55 |
-
|
| 56 |
|
| 57 |
## Contributing
|
| 58 |
|
|
@@ -73,6 +84,5 @@ Thanks!
|
|
| 73 |
|
| 74 |
## Contact
|
| 75 |
|
| 76 |
-
You can contact me at [
|
| 77 |
-
|
| 78 |
-
But you can also contact me on [Twitter](https://twitter.com/shroominic) or [Discord](https://gptassistant.app/community).
|
|
|
|
| 3 |
A LangChain implementation of the ChatGPT Code Interpreter.
|
| 4 |
Using CodeBoxes as backend for sandboxed python code execution.
|
| 5 |
[CodeBox](https://github.com/shroominic/codebox-api/tree/main) is the simplest cloud infrastructure for your LLM Apps.
|
| 6 |
+
You can run everything local except the LLM using your own OpenAI API Key.
|
| 7 |
+
|
| 8 |
+
## Features
|
| 9 |
+
|
| 10 |
+
- Dataset Analysis, Stock Charting, Image Manipulation, ....
|
| 11 |
+
- Internet access and auto Python package installation
|
| 12 |
+
- Input `text + files` -> Receive `text + files`
|
| 13 |
+
- Run everything local except the OpenAI API (OpenOrca or others coming soon)
|
| 14 |
+
- Use CodeBox API for easy scaling in production (coming soon)
|
| 15 |
|
| 16 |
## Installation
|
| 17 |
|
| 18 |
+
Get your OpenAI API Key [here](https://platform.openai.com/account/api-keys) and install the package.
|
| 19 |
+
|
| 20 |
```bash
|
| 21 |
pip install codeinterpreterapi
|
| 22 |
```
|
|
|
|
| 48 |
|
| 49 |
|
| 50 |
if __name__ == "__main__":
|
| 51 |
+
import asyncio, os
|
| 52 |
+
os.environ["OPENAI_API_KEY"] = "sk-*********" # or .env file
|
| 53 |
|
| 54 |
asyncio.run(main())
|
| 55 |
|
|
|
|
| 62 |
## Production
|
| 63 |
|
| 64 |
In case you want to deploy to production you can use the CodeBox API for easy scaling.
|
| 65 |
+
|
| 66 |
+
Please contact me if you interested in this, because it's still in early development.
|
| 67 |
|
| 68 |
## Contributing
|
| 69 |
|
|
|
|
| 84 |
|
| 85 |
## Contact
|
| 86 |
|
| 87 |
+
You can contact me at [contact@shroominic.com](mailto:contact@shroominic.com).
|
| 88 |
+
But I prefer to use [Twitter](https://twitter.com/shroominic) or [Discord](https://gptassistant.app/community) DMs.
|
|
|