Source code for nemo_gym.base_responses_api_agent
# 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.base_resources_server import BaseRunRequest, BaseVerifyResponse
from nemo_gym.openai_utils import (
NeMoGymResponse,
NeMoGymResponseCreateParamsNonStreaming,
)
from nemo_gym.server_utils import BaseRunServerInstanceConfig, BaseServer, SimpleServer
[docs]
class BaseResponsesAPIAgentConfig(BaseRunServerInstanceConfig):
pass
[docs]
class BaseResponsesAPIAgent(BaseServer):
config: BaseResponsesAPIAgentConfig
[docs]
class SimpleResponsesAPIAgent(BaseResponsesAPIAgent, SimpleServer):
config: BaseResponsesAPIAgentConfig
[docs]
def setup_webserver(self) -> FastAPI:
app = FastAPI()
self.setup_session_middleware(app)
app.post("/v1/responses")(self.responses)
app.post("/run")(self.run)
return app
# TODO: right now there is no validation on the TypedDict NeMoGymResponseCreateParamsNonStreaming
# We should explicitly add validation at this server level or we should explicitly not validate so that there is flexibility in this API.
[docs]
@abstractmethod
async def responses(self, body: NeMoGymResponseCreateParamsNonStreaming = Body()) -> NeMoGymResponse:
pass
[docs]
@abstractmethod
async def run(self, body: BaseRunRequest = Body()) -> BaseVerifyResponse:
pass