Spaces:
Running
Running
File size: 1,787 Bytes
32df48d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | # Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
"""FastAPI app for coding_tools_env."""
from __future__ import annotations
import os
from pathlib import Path
from openenv.core.env_server.http_server import create_app
from openenv.core.env_server.mcp_types import CallToolAction, CallToolObservation
try:
from .coding_tools_env_environment import CodingToolsEnvironment
from .gradio_ui import coding_tools_ui_builder
except ImportError: # pragma: no cover
from server.coding_tools_env_environment import CodingToolsEnvironment # type: ignore
from server.gradio_ui import coding_tools_ui_builder # type: ignore
def _load_env_file() -> None:
candidate = Path(__file__).resolve().parents[1] / ".env"
if not candidate.exists():
return
for raw in candidate.read_text(encoding="utf-8").splitlines():
line = raw.strip()
if not line or line.startswith("#") or "=" not in line:
continue
key, _, value = line.partition("=")
key = key.strip()
value = value.strip().strip('"').strip("'")
if key and key not in os.environ:
os.environ[key] = value
_load_env_file()
os.environ.setdefault("ENABLE_WEB_INTERFACE", "true")
app = create_app(
CodingToolsEnvironment,
CallToolAction,
CallToolObservation,
env_name="coding_tools_env",
max_concurrent_envs=int(os.getenv("MAX_CONCURRENT_ENVS", "4")),
gradio_builder=coding_tools_ui_builder,
)
def main(host: str = "0.0.0.0", port: int = 8000) -> None:
import uvicorn
uvicorn.run(app, host=host, port=port)
if __name__ == "__main__":
main()
|