mirror of
https://github.com/open-webui/open-webui
synced 2025-06-04 03:37:35 +00:00
Fallback from desc to summary to placeholder
This commit is contained in:
parent
04799f1f95
commit
09344bbb80
@ -1128,7 +1128,7 @@ export const convertOpenApiToToolPayload = (openApiSpec) => {
|
|||||||
const tool = {
|
const tool = {
|
||||||
type: 'function',
|
type: 'function',
|
||||||
name: operation.operationId,
|
name: operation.operationId,
|
||||||
description: operation.summary || 'No description available.',
|
description: operation.description || operation.summary || 'No description available.',
|
||||||
parameters: {
|
parameters: {
|
||||||
type: 'object',
|
type: 'object',
|
||||||
properties: {},
|
properties: {},
|
||||||
|
Loading…
Reference in New Issue
Block a user