Skip to content

Commit e9fe0c0

Browse files
Merge pull request Pipelex#186 from Pipelex/dev
dev to release/v0.6.5
2 parents cbbc149 + 03dab15 commit e9fe0c0

13 files changed

Lines changed: 13 additions & 13 deletions

File tree

docs/pages/build-reliable-ai-workflows-with-pipelex/design_and_run_pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ async def main():
138138
)
139139

140140
# Execute the pipeline and wait for the result
141-
pipe_output, _ = await execute_pipeline(
141+
pipe_output = await execute_pipeline(
142142
pipe_code="description_to_tagline",
143143
working_memory=working_memory,
144144
)

docs/pages/cookbook-examples/extract-dpe.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def extract_dpe(pdf_url: str) -> Dpe:
1717
concept_str="PDF",
1818
name="pdf",
1919
)
20-
pipe_output, _ = await execute_pipeline(
20+
pipe_output = await execute_pipeline(
2121
pipe_code="power_extractor_dpe",
2222
working_memory=working_memory,
2323
)

docs/pages/cookbook-examples/extract-gantt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async def extract_gantt(image_url: str) -> GanttChart:
2020
)
2121

2222
# Run the pipe
23-
pipe_output, _ = await execute_pipeline(
23+
pipe_output = await execute_pipeline(
2424
pipe_code="extract_gantt_by_steps",
2525
working_memory=working_memory,
2626
)

docs/pages/cookbook-examples/extract-generic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def extract_generic(pdf_url: str) -> TextAndImagesContent:
1717
concept_str="PDF",
1818
name="pdf",
1919
)
20-
pipe_output, _ = await execute_pipeline(
20+
pipe_output = await execute_pipeline(
2121
pipe_code="power_extractor",
2222
working_memory=working_memory,
2323
)

docs/pages/cookbook-examples/extract-proof-of-purchase.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def extract_proof_of_purchase(pdf_url: str) -> ProofOfPurchase:
1717
concept_str="PDF",
1818
name="pdf",
1919
)
20-
pipe_output, _ = await execute_pipeline(
20+
pipe_output = await execute_pipeline(
2121
pipe_code="power_extractor_proof_of_purchase",
2222
working_memory=working_memory,
2323
)

docs/pages/cookbook-examples/extract-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ async def extract_table(table_screenshot: str) -> HtmlTable:
1717
concept_str="tables.TableScreenshot",
1818
name="table_screenshot",
1919
)
20-
pipe_output, _ = await execute_pipeline(
20+
pipe_output = await execute_pipeline(
2121
pipe_code="extract_html_table_and_review",
2222
working_memory=working_memory,
2323
)

docs/pages/cookbook-examples/hello-world.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ from pipelex.pipeline.execute import execute_pipeline
2525
async def hello_world():
2626

2727
# Execute the pipeline
28-
pipe_output, _ = await execute_pipeline(
28+
pipe_output = await execute_pipeline(
2929
pipe_code="hello_world",
3030
)
3131

docs/pages/cookbook-examples/invoice-extractor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async def process_expense_report() -> ListContent[Invoice]:
1919
pdf_url=invoice_pdf_path,
2020
name="invoice_pdf",
2121
)
22-
pipe_output, _ = await execute_pipeline(
22+
pipe_output = await execute_pipeline(
2323
pipe_code="process_invoice",
2424
working_memory=working_memory,
2525
)

docs/pages/cookbook-examples/simple-ocr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ async def simple_ocr(pdf_url: str):
1919
concept_str="PDF",
2020
name="pdf",
2121
)
22-
pipe_output, _ = await execute_pipeline(
22+
pipe_output = await execute_pipeline(
2323
pipe_code="extract_page_contents_from_pdf",
2424
working_memory=working_memory,
2525
)

docs/pages/cookbook-examples/write-screenplay.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ async def generate_screenplay(pitch: str):
2525
working_memory = WorkingMemoryFactory.make_from_single_stuff(pitch_stuff)
2626

2727
# Run the pipe
28-
pipe_output, _ = await execute_pipeline(
28+
pipe_output = await execute_pipeline(
2929
pipe_code="generate_screenplay",
3030
working_memory=working_memory,
3131
)

0 commit comments

Comments
 (0)