File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
typescript-sdk/packages/cli/src Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,8 @@ async function createProject() {
45
45
"ag2" ,
46
46
"llamaindex" ,
47
47
"pydanticAi" ,
48
- "agno"
48
+ "agno" ,
49
+ "adk"
49
50
] . some ( flag => options [ flag ] ) ;
50
51
51
52
if ( isFrameworkDefined ) {
@@ -121,9 +122,11 @@ async function handleCopilotKitNextJs() {
121
122
frameworkArgs . push ( "-f" , "agno" ) ;
122
123
} else if ( options . pydanticAi ) {
123
124
frameworkArgs . push ( "-f" , "pydantic-ai" ) ;
125
+ } else if ( options . adk ) {
126
+ frameworkArgs . push ( "-f" , "adk" ) ;
124
127
}
125
128
126
- const copilotkit = spawn ( "npx" ,
129
+ const copilotkit = spawn ( "npx" ,
127
130
[
128
131
"copilotkit@latest" ,
129
132
"create" ,
@@ -217,6 +220,7 @@ program
217
220
. option ( "--llamaindex" , "Use the LlamaIndex framework" )
218
221
. option ( "--agno" , "Use the Agno framework" )
219
222
. option ( "--ag2" , "Use the AG2 framework" )
223
+ . option ( "--adk" , "Use the ADK framework" )
220
224
221
225
program . action ( async ( ) => {
222
226
await createProject ( ) ;
You can’t perform that action at this time.
0 commit comments