Class TurLLMVendorAPI

Object
TurLLMVendorAPI

@RestController @RequestMapping("/api/llm/vendor") public class TurLLMVendorAPI extends Object
  • Constructor Details

  • Method Details

    • turLLMVendorList

      @GetMapping public List<TurLLMVendor> turLLMVendorList()
    • turLLMVendorGet

      @GetMapping("/{id}") public TurLLMVendor turLLMVendorGet(@PathVariable String id)
    • turLLMVendorUpdate

      @PutMapping("/{id}") public TurLLMVendor turLLMVendorUpdate(@PathVariable String id, @RequestBody TurLLMVendor turLLMVendor)
    • turLLMVendorDelete

      @Transactional @DeleteMapping("/{id}") public boolean turLLMVendorDelete(@PathVariable String id)
    • turLLMVendorAdd

      @PostMapping public TurLLMVendor turLLMVendorAdd(@RequestBody TurLLMVendor turLLMVendor)