danny-avila--librechat
e115934061
Publish `@librechat/data-schemas` to NPM / pack (push) Failing after 8s
Publish `@librechat/client` to NPM / pack (push) Failing after 0s
GitNexus Index / index (push) Failing after 1s
Sync Locize Translations & Create Translation PR / Create Translation PR on Version Published (push) Has been skipped
Sync Helm Chart Tags / Sync chart tags (push) Failing after 2s
Publish `librechat-data-provider` to NPM / pack (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile, librechat-dev, node) (push) Failing after 1s
Docker Dev Images Build / build (Dockerfile.multi, librechat-dev-api, api-build) (push) Failing after 0s
Sync Helm Chart Tags / Ignore non-main push (push) Has been skipped
Sync Locize Translations & Create Translation PR / Sync Translation Keys with Locize (push) Failing after 1s
Publish `@librechat/client` to NPM / publish-npm (push) Has been cancelled
Publish `librechat-data-provider` to NPM / publish-npm (push) Has been cancelled
GitNexus Index / post-index (push) Has been cancelled
Publish `@librechat/data-schemas` to NPM / publish-npm (push) Has been cancelled
126 行
3.4 KiB
JavaScript
126 行
3.4 KiB
JavaScript
/**
|
|
* Open Responses API routes for LibreChat agents.
|
|
*
|
|
* Implements the Open Responses specification for a forward-looking,
|
|
* agentic API that uses items as the fundamental unit and semantic
|
|
* streaming events.
|
|
*
|
|
* Usage:
|
|
* POST /v1/responses - Create a response
|
|
* GET /v1/models - List available agents
|
|
*
|
|
* Request format:
|
|
* {
|
|
* "model": "agent_id_here",
|
|
* "input": "Hello!" or [{ type: "message", role: "user", content: "Hello!" }],
|
|
* "stream": true,
|
|
* "previous_response_id": "optional_conversation_id"
|
|
* }
|
|
*
|
|
* @see https://openresponses.org/specification
|
|
*/
|
|
const express = require('express');
|
|
const {
|
|
createResponse,
|
|
getResponse,
|
|
listModels,
|
|
} = require('~/server/controllers/agents/responses');
|
|
const { configMiddleware } = require('~/server/middleware');
|
|
const {
|
|
checkAgentPermission,
|
|
preAuthTenantMiddleware,
|
|
requireRemoteAgentAuth,
|
|
checkRemoteAgentsFeature,
|
|
} = require('./middleware');
|
|
|
|
const router = express.Router();
|
|
|
|
router.use(preAuthTenantMiddleware);
|
|
router.use(requireRemoteAgentAuth);
|
|
router.use(configMiddleware);
|
|
router.use(checkRemoteAgentsFeature);
|
|
|
|
/**
|
|
* @route POST /v1/responses
|
|
* @desc Create a model response following Open Responses specification
|
|
* @access Private (API key auth required)
|
|
*
|
|
* Request body:
|
|
* {
|
|
* "model": "agent_id", // Required: The agent ID to use
|
|
* "input": "..." | [...], // Required: String or array of input items
|
|
* "stream": true, // Optional: Whether to stream (default: false)
|
|
* "previous_response_id": "...", // Optional: Previous response for continuation
|
|
* "instructions": "...", // Optional: Additional instructions
|
|
* "tools": [...], // Optional: Additional tools
|
|
* "tool_choice": "auto", // Optional: Tool choice mode
|
|
* "max_output_tokens": 4096, // Optional: Max tokens
|
|
* "temperature": 0.7 // Optional: Temperature
|
|
* }
|
|
*
|
|
* Response (streaming):
|
|
* - SSE stream with semantic events:
|
|
* - response.in_progress
|
|
* - response.output_item.added
|
|
* - response.content_part.added
|
|
* - response.output_text.delta
|
|
* - response.output_text.done
|
|
* - response.function_call_arguments.delta
|
|
* - response.output_item.done
|
|
* - response.completed
|
|
* - [DONE]
|
|
*
|
|
* Response (non-streaming):
|
|
* {
|
|
* "id": "resp_xxx",
|
|
* "object": "response",
|
|
* "created_at": 1234567890,
|
|
* "status": "completed",
|
|
* "model": "agent_id",
|
|
* "output": [...], // Array of output items
|
|
* "usage": { ... }
|
|
* }
|
|
*/
|
|
router.post('/', checkAgentPermission, createResponse);
|
|
|
|
/**
|
|
* @route GET /v1/responses/models
|
|
* @desc List available agents as models
|
|
* @access Private (API key auth required)
|
|
*
|
|
* Response:
|
|
* {
|
|
* "object": "list",
|
|
* "data": [
|
|
* {
|
|
* "id": "agent_id",
|
|
* "object": "model",
|
|
* "name": "Agent Name",
|
|
* "provider": "openai",
|
|
* ...
|
|
* }
|
|
* ]
|
|
* }
|
|
*/
|
|
router.get('/models', listModels);
|
|
|
|
/**
|
|
* @route GET /v1/responses/:id
|
|
* @desc Retrieve a stored response by ID
|
|
* @access Private (API key auth required)
|
|
*
|
|
* Response:
|
|
* {
|
|
* "id": "resp_xxx",
|
|
* "object": "response",
|
|
* "created_at": 1234567890,
|
|
* "status": "completed",
|
|
* "model": "agent_id",
|
|
* "output": [...],
|
|
* "usage": { ... }
|
|
* }
|
|
*/
|
|
router.get('/:id', getResponse);
|
|
|
|
module.exports = router;
|