Skip to content

Commit c4aa742

Browse files
committed
formatting
1 parent 774966f commit c4aa742

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

playground/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
"""RLM Playground - FastAPI server for running RLM completions via web interface."""
2-

playground/run.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@
33
import sys
44
from pathlib import Path
55

6+
import uvicorn
7+
68
# Add project root to Python path
79
project_root = Path(__file__).parent.parent
810
if str(project_root) not in sys.path:
911
sys.path.insert(0, str(project_root))
1012

11-
import uvicorn
1213

1314
if __name__ == "__main__":
1415
uvicorn.run(

playground/server.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,10 @@
88
from fastapi import FastAPI
99
from fastapi.middleware.cors import CORSMiddleware
1010

11+
from playground.models import RunRequest, RunResponse
1112
from rlm import RLM
1213
from rlm.logger import RLMLogger
1314

14-
from playground.models import RunRequest, RunResponse
15-
1615
# Load environment variables
1716
load_dotenv()
1817

0 commit comments

Comments
 (0)