From e74bb29e18a5f63cf352d2819445d1e19fe668fe Mon Sep 17 00:00:00 2001 From: MistApproach Date: Thu, 20 Jun 2024 11:14:56 +0200 Subject: [PATCH] fix: add missing angle bracket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a68c874..7f1c19d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Callm uses builder pattern for creating inference pipelines. ```rust use callm::pipelines::PipelineText; -fn main() -> Result<(), Box { +fn main() -> Result<(), Box> { let mut pipeline = PipelineText::builder() .with_location("/path/to/model") .build()?;