Source code for nemo_gym.base_resources_server

# SPDX-FileCopyrightText: Copyright (c) 2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from abc import abstractmethod

from fastapi import FastAPI
from pydantic import BaseModel

from nemo_gym.openai_utils import (
    NeMoGymResponse,
    NeMoGymResponseCreateParamsNonStreaming,
)
from nemo_gym.server_utils import BaseRunServerInstanceConfig, BaseServer, SimpleServer


[docs] class BaseResourcesServerConfig(BaseRunServerInstanceConfig): pass
[docs] class BaseResourcesServer(BaseServer): config: BaseResourcesServerConfig
[docs] class BaseRunRequest(BaseModel): responses_create_params: NeMoGymResponseCreateParamsNonStreaming
[docs] class BaseVerifyRequest(BaseRunRequest): response: NeMoGymResponse
[docs] class BaseVerifyResponse(BaseVerifyRequest): reward: float
[docs] class BaseSeedSessionRequest(BaseModel): pass
[docs] class BaseSeedSessionResponse(BaseModel): pass
[docs] class SimpleResourcesServer(BaseResourcesServer, SimpleServer): config: BaseResourcesServerConfig
[docs] def setup_webserver(self) -> FastAPI: app = FastAPI() self.setup_session_middleware(app) app.post("/seed_session")(self.seed_session) app.post("/verify")(self.verify) return app
[docs] async def seed_session(self, body: BaseSeedSessionRequest) -> BaseSeedSessionResponse: return BaseSeedSessionResponse()
[docs] @abstractmethod async def verify(self, body: BaseVerifyRequest) -> BaseVerifyResponse: pass