--- tags: LLM Manager --- Training API (/hermesllm/training) === [TOC] :::success :bulb: [LLM Manager Page](https://hackmd.io/YdPxLI6CSyicp3UDcwFx7Q?view) :bulb: [SQL Data Structure Page](https://hackmd.io/86fUDn1HSa64bMkTao7zUw?view) ::: ### POST training embedding question - URL: <mgt-ip>:3388/hermesllm/training/embedding - Methods: POST - Auth: GUI auth - Return: 201 and - Req data: :::info type: - circuit - device_info - docker - history - license - lb - ngfw - notification - organization - powerlink - qos - sase - sla - user ::: ```jsonld= { "embedding_list": [ { "text": "what is my device info?", "type": "organization", } ] } ``` ### GET training data detail - Methods: GET - Auth: GUI auth - Return: 200 and - Res data: ```jsonld= { "embedding_list": [ { "text": "what is my device info?", "type": "organization", "is_trained": True } ] } ```