File size: 351 Bytes
5590815
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python3

"""
Hiroyuki-SLM API Implementation
This module implements the API endpoints for the Hiroyuki-SLM model using FastAPI.
"""

import logging
import api

logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)

if __name__ == "__main__":
    logger.info("Starting Hiroyuki-SLM API server...")
    api.start()