├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── functions ├── contract-processor │ ├── app.py │ ├── concat.py │ ├── llm.py │ └── requirements.txt ├── process-upload │ ├── app.py │ └── requirements.txt └── receive-email │ ├── app.py │ └── requirements.txt ├── makefile └── template.yaml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/README.md -------------------------------------------------------------------------------- /functions/contract-processor/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/contract-processor/app.py -------------------------------------------------------------------------------- /functions/contract-processor/concat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/contract-processor/concat.py -------------------------------------------------------------------------------- /functions/contract-processor/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/contract-processor/llm.py -------------------------------------------------------------------------------- /functions/contract-processor/requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | pydantic 3 | datetime 4 | boto3 5 | requests -------------------------------------------------------------------------------- /functions/process-upload/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/process-upload/app.py -------------------------------------------------------------------------------- /functions/process-upload/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/process-upload/requirements.txt -------------------------------------------------------------------------------- /functions/receive-email/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/functions/receive-email/app.py -------------------------------------------------------------------------------- /functions/receive-email/requirements.txt: -------------------------------------------------------------------------------- 1 | boto3 2 | botocore -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/makefile -------------------------------------------------------------------------------- /template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IAmTomShaw/contract-processing-pipeline/HEAD/template.yaml --------------------------------------------------------------------------------