Spaces:
Running
Running
File size: 589 Bytes
5301c48 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
"""Starfish Core - A framework for structured data processing and LLM integration.
Provides core components for:
- StructuredLLM: Interface for working with large language models
- data_factory: Factory pattern for creating and managing data pipelines
"""
# Expose core directly from easy access
from .data_factory.factory import data_factory
from .llm.structured_llm import StructuredLLM
from .data_gen_template.core import data_gen_template
# Define what 'from starfish import *' imports (good practice)
__all__ = [
"StructuredLLM",
"data_factory",
"data_gen_template",
]
|