jgwill / jghfmanager

HuggingFace EndPoint Manager - Ex. Boot a ChatMusician Endpoint, send some requests then suspend it.
Creative Commons Zero v1.0 Universal
1 stars 0 forks source link

How can this flow be managed by an LLM Tooling ? #5

Open jgwill opened 1 month ago

jgwill commented 1 month ago
jgwill commented 1 month ago
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {
    "musical": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "sname": {
          "type": "string"
        },
        "prompts": {
          "type": "object",
          "patternProperties": {
            "^[a-zA-Z0-9]+$": {
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      },
      "required": ["name", "sname", "prompts"]
    }
  },
  "required": ["musical"]
}

musical.schema.v1b.json