Source code for nemo_gym.base_responses_api_model

# 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 Body, FastAPI

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


[docs] class BaseResponsesAPIModelConfig(BaseRunServerInstanceConfig): pass
[docs] class BaseResponsesAPIModel(BaseServer): config: BaseResponsesAPIModelConfig
[docs] class SimpleResponsesAPIModel(BaseResponsesAPIModel, SimpleServer):
[docs] def setup_webserver(self) -> FastAPI: app = FastAPI() self.setup_session_middleware(app) app.post("/v1/chat/completions")(self.chat_completions) app.post("/v1/responses")(self.responses) return app
[docs] @abstractmethod async def chat_completions( self, body: NeMoGymChatCompletionCreateParamsNonStreaming = Body() ) -> NeMoGymChatCompletion: pass
[docs] @abstractmethod async def responses(self, body: NeMoGymResponseCreateParamsNonStreaming = Body()) -> NeMoGymResponse: pass