From 6201b4a94265d0aa1143ce489341e85bf4994b87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Ho=CC=88nicke?= Date: Sat, 13 May 2023 21:34:15 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9E=B0=20feat:=20avoid=20loop?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev_gpt/options/generate/templates_user.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev_gpt/options/generate/templates_user.py b/dev_gpt/options/generate/templates_user.py index a726b17..45ad093 100644 --- a/dev_gpt/options/generate/templates_user.py +++ b/dev_gpt/options/generate/templates_user.py @@ -37,10 +37,15 @@ The executor name must fulfill the following criteria: - only consists of lower and upper case characters - end with Executor. -The output is a the raw string wrapped into ``` and starting with **name.txt** like this: +The name is witten in the following format: **name.txt** ``` -PDFParserExecutor + +``` +Example for: "Get a png as input and return a vectorized version as svg.": +**name.txt** +``` +PngToSvgExecutor ```''' )