From 13482bce34d002669a1e70df9e5bca4a531bd033 Mon Sep 17 00:00:00 2001 From: Dillon Laird Date: Tue, 23 Apr 2024 17:20:58 -0700 Subject: [PATCH] fix readme typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 87db92ad..5ff3840f 100644 --- a/README.md +++ b/README.md @@ -114,7 +114,7 @@ You can also add your own custom tools for your vision agent to use: >>> } >>> ], >>> } ->>> def __call__(self, prompt: str) -> int: +>>> def __call__(self, prompt: list[str]) -> int: >>> return len(prompt) ``` This will register it with the list of tools Vision Agent has access to. It will be able