forked from phoenix-oss/llama-stack-mirror
Update URL type to avoid string-ifying and creating complexity
This commit is contained in:
parent
75e72cf2fc
commit
f1d6cb22d7
3 changed files with 18 additions and 12 deletions
|
@ -2893,9 +2893,16 @@
|
|||
]
|
||||
},
|
||||
"URL": {
|
||||
"type": "string",
|
||||
"format": "uri",
|
||||
"pattern": "^(https?://|file://|data:)"
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"uri": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"uri"
|
||||
]
|
||||
},
|
||||
"UserMessage": {
|
||||
"type": "object",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue