Added unstructured
This commit is contained in:
parent
9435be7cce
commit
c54d77515b
2 changed files with 24 additions and 0 deletions
BIN
public/svgs/unstructured.png
Normal file
BIN
public/svgs/unstructured.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
24
templates/compose/unstructured.yaml
Normal file
24
templates/compose/unstructured.yaml
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
# documentation: https://github.com/Unstructured-IO/unstructured-api?tab=readme-ov-file#--general-pre-processing-pipeline-for-documents
|
||||||
|
# slogan: Unstructured provides a platform and tools to ingest and process unstructured documents for Retrieval Augmented Generation (RAG) and model fine-tuning.
|
||||||
|
# tags: workflow, orchestration, data-pipeline, python, data, machine-learning, data-science, nlp, unstructured, ocr, data-extraction
|
||||||
|
# logo: svgs/unstructured.png
|
||||||
|
# port: 8000
|
||||||
|
|
||||||
|
version: "3"
|
||||||
|
|
||||||
|
services:
|
||||||
|
unstructured:
|
||||||
|
image: "downloads.unstructured.io/unstructured-io/unstructured-api:latest"
|
||||||
|
environment:
|
||||||
|
- SERVICE_FQDN_UNSTRUCTURED_8000
|
||||||
|
- "UNSTRUCTURED_API_KEY=${SERVICE_PASSWORD_APIKEY}"
|
||||||
|
healthcheck:
|
||||||
|
test:
|
||||||
|
- CMD
|
||||||
|
- wget
|
||||||
|
- "-qO-"
|
||||||
|
- "--spider"
|
||||||
|
- "http://0.0.0.0:8000/healthcheck"
|
||||||
|
interval: 15s
|
||||||
|
timeout: 15s
|
||||||
|
retries: 3
|
||||||
Loading…
Reference in a new issue