Skip to content

Commit

Permalink
feat/backend: upd TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
kudep committed Dec 12, 2023
1 parent 78a5269 commit 55bb5af
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion df_designer/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,19 +100,24 @@ async def service_version_get() -> dict[str, str]:
return {"status": "ok", "version": version}


# TODO: здесь подгружается namespaces (funcs, vars, ...)
# TODO: подумать, может быть назвать через config vs namespaces
# /library
@app.get("/library/functions")
async def library_functions_get() -> dict[str, str]:
"""(get base functions) - ?? JSON"""
return {"status": "ok"}


# TODO: здесь вычитывание конфигурации (не только LLM)
# TODO: нет сохранения конфигурации для моделей (API-s, API-KEY-s)
# TODO: нет сохранения общей конфигурации (hotkeys, git creds, ports, index_paths, paths to additional configs)
@app.get("/library/llms")
async def library_llms_get() -> dict[str, str]:
"""(get available llm models) - JSON of llm models"""
return {"status": "ok"}


# TODO: rename runtime (здесь нет DFF, здесь используются модели)
# /dff
@app.post("/dff/tests/prompt")
async def dff_tests_prompt_post() -> dict[str, str]:
Expand All @@ -126,6 +131,7 @@ async def dff_tests_condition_post() -> dict[str, str]:
return {"status": "ok"}


# TODO: compile (сериализация), build, runtime
# /build
@app.post("/build")
async def build_post() -> dict[str, str]:
Expand Down

0 comments on commit 55bb5af

Please sign in to comment.