feat: frontend

This commit is contained in:
Florian Hönicke
2023-03-20 01:21:17 +01:00
parent 0116449082
commit d23998c0d7
3 changed files with 24 additions and 6 deletions

View File

@@ -7,10 +7,13 @@ def general_guidelines():
"General guidelines: "
"The code you write is production ready. "
"Every file starts with comments describing what the code is doing before the first import. "
"Comments can only be written between tags. "
"Then all imports are listed. "
"It is important to import all modules that could be needed in the executor code. "
"Always import BytesIO from io. "
"Comments can only be written between tags. "
"Always import: "
"from typing import Dict, List, Optional, Tuple, Union "
"from io import BytesIO "
"from jina import Executor, DocumentArray, Document, requests "
"Start from top-level and then fully implement all methods. "
"\n"
)