11 lines
239 B
Python
11 lines
239 B
Python
"""
|
|
UAV Agent Templates
|
|
|
|
This package contains prompt templates for the UAV control agent.
|
|
"""
|
|
|
|
from .agent_prompt import AGENT_PROMPT
|
|
from .parsing_error import PARSING_ERROR_TEMPLATE
|
|
|
|
__all__ = ["AGENT_PROMPT", "PARSING_ERROR_TEMPLATE"]
|