用户信息调整

This commit is contained in:
weber
2025-08-26 17:02:34 +08:00
parent 5d4a95bf07
commit 52e571da01
16 changed files with 394 additions and 150 deletions

View File

@@ -89,7 +89,8 @@ interface AgentService {
*/
suspend fun getAgent(
pageNumber: Int,
pageSize: Int = 20
pageSize: Int = 20,
authorId: Int? = null
): ListContainer<AgentEntity>
}

View File

@@ -523,6 +523,7 @@ interface RaveNowAPI {
@Query("page") page: Int = 1,
@Query("pageSize") pageSize: Int = 20,
@Query("withWorkflow") withWorkflow: Int = 1,
@Query("authorId") authorId: Int? = null,
): Response<DataContainer<ListContainer<Agent>>>
@GET("outside/my/prompts")