Scrapegraph-ai/scrapegraphai/prompts/__init__.py
2024-10-23 12:15:16 +02:00

40 lines
2.5 KiB
Python

"""
__init__.py for the prompts folder
"""
from .generate_answer_node_prompts import (TEMPLATE_CHUNKS,
TEMPLATE_NO_CHUNKS,
TEMPLATE_MERGE, TEMPLATE_CHUNKS_MD,
TEMPLATE_NO_CHUNKS_MD, TEMPLATE_MERGE_MD, REGEN_ADDITIONAL_INFO)
from .generate_answer_node_csv_prompts import (TEMPLATE_CHUKS_CSV,
TEMPLATE_NO_CHUKS_CSV,
TEMPLATE_MERGE_CSV)
from .generate_answer_node_pdf_prompts import (TEMPLATE_CHUNKS_PDF,
TEMPLATE_NO_CHUNKS_PDF,
TEMPLATE_MERGE_PDF)
from .generate_answer_node_omni_prompts import (TEMPLATE_CHUNKS_OMNI,
TEMPLATE_NO_CHUNKS_OMNI,
TEMPLATE_MERGE_OMNI)
from .merge_answer_node_prompts import TEMPLATE_COMBINED
from .robots_node_prompts import TEMPLATE_ROBOT
from .search_internet_node_prompts import TEMPLATE_SEARCH_INTERNET
from .search_link_node_prompts import TEMPLATE_RELEVANT_LINKS
from .search_node_with_context_prompts import (TEMPLATE_SEARCH_WITH_CONTEXT_CHUNKS,
TEMPLATE_SEARCH_WITH_CONTEXT_NO_CHUNKS)
from .prompt_refiner_node_prompts import TEMPLATE_REFINER, TEMPLATE_REFINER_WITH_CONTEXT
from .html_analyzer_node_prompts import TEMPLATE_HTML_ANALYSIS, TEMPLATE_HTML_ANALYSIS_WITH_CONTEXT
from .generate_code_node_prompts import (TEMPLATE_INIT_CODE_GENERATION,
TEMPLATE_SYNTAX_ANALYSIS,
TEMPLATE_SYNTAX_CODE_GENERATION,
TEMPLATE_EXECUTION_ANALYSIS,
TEMPLATE_EXECUTION_CODE_GENERATION,
TEMPLATE_VALIDATION_ANALYSIS,
TEMPLATE_VALIDATION_CODE_GENERATION,
TEMPLATE_SEMANTIC_COMPARISON,
TEMPLATE_SEMANTIC_ANALYSIS,
TEMPLATE_SEMANTIC_CODE_GENERATION)
from .reasoning_node_prompts import (TEMPLATE_REASONING,
TEMPLATE_REASONING_WITH_CONTEXT)
from .merge_generated_scripts_prompts import TEMPLATE_MERGE_SCRIPTS_PROMPT
from .get_probable_tags_node_prompts import TEMPLATE_GET_PROBABLE_TAGS