File tree 3 files changed +14
-2
lines changed
3 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ async function main() {
101
101
/* Get the AI response */
102
102
const completion = await openai . chat . completions . create ( {
103
103
messages : [ { role : "user" , content : message . content as string } ] ,
104
- model : GAIA_MODEL_NAME ,
104
+ model : GAIA_MODEL_NAME as string ,
105
105
} ) ;
106
106
107
107
/* Get the AI response */
Original file line number Diff line number Diff line change 4
4
"private" : true ,
5
5
"type" : " module" ,
6
6
"scripts" : {
7
+ "build" : " cd ../.. && yarn tsc" ,
7
8
"dev" : " tsx --env-file=.env index.ts" ,
8
- "gen:keys" : " tsx ../../scripts/generateKeys.ts"
9
+ "gen:keys" : " tsx ../../scripts/generateKeys.ts" ,
10
+ "lint" : " cd ../.. && yarn eslint integrations/gaia" ,
11
+ "typecheck" : " cd ../.. && yarn typecheck"
9
12
},
10
13
"dependencies" : {
11
14
"@xmtp/node-sdk" : " 0.0.42" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "paths" : {
5
+ "@/helpers" : [" ./helpers/index.ts" ]
6
+ }
7
+ },
8
+ "include" : [" **/*.ts" ]
9
+ }
You can’t perform that action at this time.
0 commit comments