File size: 441 Bytes
fb867c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
Interface module for Felix Framework.

This module provides web interface components for the Felix Framework,
including Gradio-based interactive interfaces, 3D visualizations,
and educational content delivery.
"""

from .gradio_interface import FelixGradioInterface, FelixSession, create_felix_interface, launch_felix_app

__all__ = [
    'FelixGradioInterface',
    'FelixSession',
    'create_felix_interface',
    'launch_felix_app'
]