12 lines
260 B
Python
12 lines
260 B
Python
|
|
"""
|
||
|
|
Query operations package for cross-service prompt queries.
|
||
|
|
|
||
|
|
Provides higher-level query operations over the prompt infrastructure.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from markitect.prompts.queries.operations import PromptQueryService
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"PromptQueryService",
|
||
|
|
]
|