├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructor-ai/cloud/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructor-ai/cloud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructor-ai/cloud/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | instructor 2 | fastapi 3 | pydantic 4 | uvicorn 5 | anthropic -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/instructor-ai/cloud/HEAD/run.py --------------------------------------------------------------------------------