File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1- """RLM Playground - FastAPI server for running RLM completions via web interface."""
2-
Original file line number Diff line number Diff line change 33import sys
44from pathlib import Path
55
6+ import uvicorn
7+
68# Add project root to Python path
79project_root = Path (__file__ ).parent .parent
810if str (project_root ) not in sys .path :
911 sys .path .insert (0 , str (project_root ))
1012
11- import uvicorn
1213
1314if __name__ == "__main__" :
1415 uvicorn .run (
Original file line number Diff line number Diff line change 88from fastapi import FastAPI
99from fastapi .middleware .cors import CORSMiddleware
1010
11+ from playground .models import RunRequest , RunResponse
1112from rlm import RLM
1213from rlm .logger import RLMLogger
1314
14- from playground .models import RunRequest , RunResponse
15-
1615# Load environment variables
1716load_dotenv ()
1817
You can’t perform that action at this time.
0 commit comments