Hiroyuki-SLM / space /main.py
github-actions
Update requirements.txt (from GitHub)
8351050
Raw
History Blame Contribute Delete
351 Bytes
#!/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()