File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
scraper/scrapeURL/transformers Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ export async function performGenerateLlmsTxt(
160
160
161
161
const { extract } = await generateCompletions ( {
162
162
logger,
163
- model : getModel ( "gpt-4o-mini" ) ,
163
+ model : getModel ( "gpt-4o-mini" , "openai" ) ,
164
164
options : {
165
165
systemPrompt : "" ,
166
166
mode : "llm" ,
Original file line number Diff line number Diff line change @@ -187,6 +187,7 @@ export function calculateCost(
187
187
) {
188
188
const modelCosts = {
189
189
"openai/o3-mini" : { input_cost : 1.1 , output_cost : 4.4 } ,
190
+ "gpt-4o-mini" : { input_cost : 0.15 , output_cost : 0.6 } ,
190
191
"openai/gpt-4o-mini" : { input_cost : 0.15 , output_cost : 0.6 } ,
191
192
"openai/gpt-4o" : { input_cost : 2.5 , output_cost : 10 } ,
192
193
"google/gemini-2.0-flash-001" : { input_cost : 0.15 , output_cost : 0.6 } ,
You can’t perform that action at this time.
0 commit comments