Metadata-Version: 2.1
Name: pykoi
Version: 0.0.1
Summary: 
License: Apache
Author: CambioML
Author-email: wanwanaiai45@gmail.com
Requires-Python: >=3.9,<3.13
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: accelerate (==0.21.0)
Requires-Dist: bitsandbytes (==0.40.2)
Requires-Dist: datasets (==2.13.1)
Requires-Dist: einops (==0.6.1)
Requires-Dist: evaluate (==0.4.0)
Requires-Dist: flask (==2.3.2)
Requires-Dist: flask-cors (==4.0.0)
Requires-Dist: openai (==0.27.8)
Requires-Dist: pandas (==2.0.3)
Requires-Dist: peft (==0.4.0)
Requires-Dist: pyngrok (==6.0.0)
Requires-Dist: scipy (==1.11.1)
Requires-Dist: transformers (==4.31.0)
Requires-Dist: trl (==0.4.7)
Description-Content-Type: text/markdown


# pykoi

## User Setup
```
pip3 install pykoi

# Assume you are running on EC2 with Deep Learning AMI GPU PyTorch 2.0.1 (Ubuntu 20.04) 20230627
pip3 install torch --index-url https://download.pytorch.org/whl/cu118
```



## Backend Dev Setup
```
conda create -n pykoi python=3.10
conda activate pykoi
cd pykoi
pip3 install poetry
poetry install --no-root
```

## Frontend Dev Setup
Frontend:
```
cd frontend
npm instal vite
npm run build
```
