├── .devcontainer └── devcontainer.json ├── LICENSE ├── README.md ├── requirements.txt └── streamlit_app.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlyWargnier/CodeLlama-via-DeepInfra/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlyWargnier/CodeLlama-via-DeepInfra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlyWargnier/CodeLlama-via-DeepInfra/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | replicate 3 | openai==0.28 4 | -------------------------------------------------------------------------------- /streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CharlyWargnier/CodeLlama-via-DeepInfra/HEAD/streamlit_app.py --------------------------------------------------------------------------------