-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from samchon/test/llm-function-calling
The exact `IChatGptSchema` and LLM function calling applilcation schemas.
- Loading branch information
Showing
77 changed files
with
3,050 additions
and
1,155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ node_modules/ | |
|
||
package-lock.json | ||
pnpm-lock.yaml | ||
*.log | ||
*.log | ||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,127 @@ | ||
[ | ||
{ | ||
"id": "1", | ||
"name": "electronics", | ||
"children": [ | ||
{ | ||
"id": "1.1", | ||
"name": "desktops", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.2", | ||
"name": "laptops", | ||
"children": [ | ||
{ | ||
"id": "1.2.1", | ||
"name": "ultrabooks", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.2.2", | ||
"name": "macbooks", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.2.3", | ||
"name": "desknotes", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.2.4", | ||
"name": "2 in 1 laptops", | ||
"children": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "1.3", | ||
"name": "tablets", | ||
"children": [ | ||
{ | ||
"id": "1.3.1", | ||
"name": "ipads", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.3.2", | ||
"name": "android tablets", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.3.3", | ||
"name": "windows tablets", | ||
"children": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "1.4", | ||
"name": "smartphones", | ||
"children": [ | ||
{ | ||
"id": "1.4.1", | ||
"name": "mini smartphones", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.4.2", | ||
"name": "phablets", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.4.3", | ||
"name": "gaming smartphones", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.4.4", | ||
"name": "rugged smartphones", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.4.5", | ||
"name": "foldable smartphones", | ||
"children": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "1.5", | ||
"name": "cameras", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "1.6", | ||
"name": "televisions", | ||
"children": [] | ||
} | ||
] | ||
}, | ||
{ | ||
"id": "2", | ||
"name": "furnitures", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "3", | ||
"name": "accessories", | ||
"children": [ | ||
{ | ||
"id": "3.1", | ||
"name": "jewelry", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "3.2", | ||
"name": "clothing", | ||
"children": [] | ||
}, | ||
{ | ||
"id": "3.3", | ||
"name": "shoes", | ||
"children": [] | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"input": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/$defs/IShoppingCategory" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"input" | ||
], | ||
"additionalProperties": false, | ||
"$defs": { | ||
"IShoppingCategory": { | ||
"type": "object", | ||
"properties": { | ||
"id": { | ||
"type": "string" | ||
}, | ||
"name": { | ||
"type": "string" | ||
}, | ||
"children": { | ||
"type": "array", | ||
"items": { | ||
"$ref": "#/$defs/IShoppingCategory" | ||
} | ||
} | ||
}, | ||
"required": [ | ||
"id", | ||
"name", | ||
"children" | ||
], | ||
"additionalProperties": false | ||
} | ||
} | ||
} |
Oops, something went wrong.