mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-02-05 22:53:23 +08:00
34 lines
912 B
Plaintext
34 lines
912 B
Plaintext
name: etl_chromadb_scanned_pdf
|
|
python_env: python_env.yml
|
|
|
|
entry_points:
|
|
main:
|
|
parameters:
|
|
|
|
input_artifact:
|
|
description: Fully-qualified name for the input artifact
|
|
type: string
|
|
|
|
output_artifact:
|
|
description: Name for the output artifact
|
|
type: string
|
|
|
|
output_type:
|
|
description: Type for the artifact output
|
|
type: string
|
|
|
|
output_description:
|
|
description: Description for the artifact
|
|
type: string
|
|
|
|
embedding_model:
|
|
description: Fully-qualified name for the embedding model
|
|
type: string
|
|
|
|
|
|
command: >-
|
|
python run.py --input_artifact {input_artifact} \
|
|
--output_artifact {output_artifact} \
|
|
--output_type {output_type} \
|
|
--output_description {output_description} \
|
|
--embedding_model {embedding_model} |