Skip to content

Instantly share code, notes, and snippets.

@leriaetnasta
Last active February 3, 2023 21:59
@AllArgsConstructor
@RestController
public class OpenaiRestController {
ChatgptService chatgptService;
@PostMapping("/sendPrompt")
public Answer sendPrompt(@RequestBody String prompt) throws Exception {
return chatgptService.sendPrompt(prompt);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment