mirror of
https://github.com/langgenius/dify.git
synced 2026-06-22 19:21:13 +08:00
fix(agent): sync generated observability contracts (#37597)
This commit is contained in:
parent
59f8f2e7b3
commit
bc825f94b5
@ -663,7 +663,7 @@ Commit an uploaded file into the Agent App drive under files/<name>
|
||||
|
||||
| Name | Located in | Description | Required | Schema |
|
||||
| ---- | ---------- | ----------- | -------- | ------ |
|
||||
| agent_id | path | | Yes | string |
|
||||
| agent_id | path | | Yes | string (uuid) |
|
||||
|
||||
#### Responses
|
||||
|
||||
@ -703,8 +703,8 @@ Commit an uploaded file into the Agent App drive under files/<name>
|
||||
| source | query | Filter by all, console/explore, api/service-api, web-app, debugger, openapi, or trigger | No | string |
|
||||
| start | query | Start date (YYYY-MM-DD HH:MM) | No | string |
|
||||
| status | query | Filter by success, failed, or paused | No | string |
|
||||
| agent_id | path | | Yes | string |
|
||||
| conversation_id | path | | Yes | string |
|
||||
| agent_id | path | | Yes | string (uuid) |
|
||||
| conversation_id | path | | Yes | string (uuid) |
|
||||
|
||||
#### Responses
|
||||
|
||||
|
||||
@ -2347,7 +2347,7 @@ export const zPostAgentByAgentIdFilesPath = z.object({
|
||||
export const zPostAgentByAgentIdFilesResponse = zAgentDriveFileCommitResponse
|
||||
|
||||
export const zGetAgentByAgentIdLogSourcesPath = z.object({
|
||||
agent_id: z.string(),
|
||||
agent_id: z.uuid(),
|
||||
})
|
||||
|
||||
/**
|
||||
@ -2375,8 +2375,8 @@ export const zGetAgentByAgentIdLogsQuery = z.object({
|
||||
export const zGetAgentByAgentIdLogsResponse = zAgentLogListResponse
|
||||
|
||||
export const zGetAgentByAgentIdLogsByConversationIdMessagesPath = z.object({
|
||||
agent_id: z.string(),
|
||||
conversation_id: z.string(),
|
||||
agent_id: z.uuid(),
|
||||
conversation_id: z.uuid(),
|
||||
})
|
||||
|
||||
export const zGetAgentByAgentIdLogsByConversationIdMessagesQuery = z.object({
|
||||
|
||||
Loading…
Reference in New Issue
Block a user