File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : true ,
3
3
"name" : " @autoview/station" ,
4
- "version" : " 7.0.0 " ,
4
+ "version" : " 7.0.1 " ,
5
5
"description" : " Automatic viewer components renderer by JSON schema and AI agent" ,
6
6
"repository" : {
7
7
"type" : " git" ,
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import type {
4
4
IAutoViewCompilerResult ,
5
5
} from "@autoview/interface" ;
6
6
import { OpenApi } from "@samchon/openapi" ;
7
- import { ChatGptSchemaComposer } from "@samchon/openapi/lib/composers/llm/ChatGptSchemaComposer " ;
7
+ import { LlmSchemaComposer } from "@samchon/openapi/lib/composers/LlmSchemaComposer " ;
8
8
import ts from "typescript" ;
9
9
10
10
import { TypeScriptCompiler } from "./compilers/TypeScriptCompiler" ;
@@ -140,12 +140,12 @@ const getJsonSchema = (
140
140
schemas : { } ,
141
141
} ;
142
142
const schema : OpenApi . IJsonSchema = isClaudeParameters ( props )
143
- ? ChatGptSchemaComposer . invert ( {
143
+ ? LlmSchemaComposer . invert ( "claude" ) ( {
144
144
components,
145
145
$defs : props . parameters . $defs ,
146
146
schema : props . parameters ,
147
147
} )
148
- : ChatGptSchemaComposer . invert ( {
148
+ : LlmSchemaComposer . invert ( "chatgpt" ) ( {
149
149
components,
150
150
$defs : props . $defs ,
151
151
schema : props . schema ,
You can’t perform that action at this time.
0 commit comments