lynxkite / server /main.py
darabos's picture
Prepare for open-sourcing.
786c330
raw
history blame
1.64 kB
import dataclasses
import fastapi
import pathlib
from . import ops
from . import workspace
# Which boxes are available is currently configured here.
# This is not the final solution.
from . import lynxkite_ops
# from . import networkx_ops
# from . import pytorch_model_ops
# from . import lynxscribe_ops
from . import llm_ops
app = fastapi.FastAPI()
@app.get("/api/catalog")
def get_catalog():
return {op.name: op.model_dump() for op in ops.ALL_OPS.values()}
class SaveRequest(workspace.BaseConfig):
path: str
ws: workspace.Workspace
def save(req: SaveRequest):
path = DATA_PATH / req.path
assert path.is_relative_to(DATA_PATH)
workspace.save(req.ws, path)
@app.post("/api/save")
def save_and_execute(req: SaveRequest):
save(req)
workspace.execute(req.ws)
save(req)
return req.ws
@app.get("/api/load")
def load(path: str):
path = DATA_PATH / path
assert path.is_relative_to(DATA_PATH)
if not path.exists():
return workspace.Workspace()
return workspace.load(path)
DATA_PATH = pathlib.Path.cwd() / 'data'
@dataclasses.dataclass(order=True)
class DirectoryEntry:
name: str
type: str
@app.get("/api/dir/list")
def list_dir(path: str):
path = DATA_PATH / path
assert path.is_relative_to(DATA_PATH)
return sorted([
DirectoryEntry(p.relative_to(DATA_PATH), 'directory' if p.is_dir() else 'workspace')
for p in path.iterdir()])
@app.post("/api/dir/mkdir")
def make_dir(req: dict):
path = DATA_PATH / req['path']
assert path.is_relative_to(DATA_PATH)
assert not path.exists()
path.mkdir()
return list_dir(path.parent)