16 lines
610 B
Python
16 lines
610 B
Python
|
|
"""Prompt templates for OntoCast.
|
||
|
|
|
||
|
|
This package contains prompt templates used by the OntoCast framework
|
||
|
|
for LLM interactions. These prompts are designed to guide language
|
||
|
|
models in performing specific tasks within the ontology processing
|
||
|
|
workflow.
|
||
|
|
|
||
|
|
Available prompts:
|
||
|
|
- render_ontology: Generate ontology triples from text
|
||
|
|
- render_facts: Extract facts from text using ontologies
|
||
|
|
- select_ontology: Choose appropriate ontologies for text
|
||
|
|
- criticise_ontology: Evaluate and critique ontology quality
|
||
|
|
- criticise_facts: Validate and critique extracted facts
|
||
|
|
- common: Shared prompt templates and components
|
||
|
|
"""
|