forked from Emiyaaaaa/HiveMind
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreadsController.java
More file actions
59 lines (50 loc) · 1.99 KB
/
Copy pathThreadsController.java
File metadata and controls
59 lines (50 loc) · 1.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package io.agentflow.api.controller;
import io.agentflow.api.dto.RunResponse;
import io.agentflow.api.dto.ThreadCreateRequest;
import io.agentflow.api.dto.ThreadMessageResponse;
import io.agentflow.api.dto.ThreadResponse;
import io.agentflow.api.service.ThreadService;
import jakarta.validation.Valid;
import java.util.List;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseStatus;
import org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping("/v1/threads")
public class ThreadsController {
private final ThreadService service;
public ThreadsController(ThreadService service) {
this.service = service;
}
@PostMapping
@ResponseStatus(HttpStatus.CREATED)
public ThreadResponse create(@Valid @RequestBody ThreadCreateRequest payload) {
return service.create(payload);
}
@GetMapping
public List<ThreadResponse> list(@RequestParam(defaultValue = "50") int limit) {
return service.list(limit);
}
@GetMapping("/{id}")
public ThreadResponse get(@PathVariable String id) {
return service.get(id);
}
@GetMapping("/{id}/messages")
public ThreadMessageResponse.Page listMessages(
@PathVariable String id,
@RequestParam(required = false) String cursor,
@RequestParam(defaultValue = "50") int limit) {
return service.listMessages(id, cursor, limit);
}
@GetMapping("/{id}/runs")
public List<RunResponse> listRuns(
@PathVariable String id, @RequestParam(defaultValue = "50") int limit) {
return service.listRuns(id, limit);
}
}