File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/api/providers/fetchers/__tests__ Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
33import axios from "axios"
44import { getNebiusModels } from "../nebius"
5- import { COMPUTER_USE_MODELS } from "../../../../shared/api"
5+ import { LITELLM_COMPUTER_USE_MODELS } from "../../../../shared/api"
66
77jest . mock ( "axios" )
88
@@ -129,9 +129,9 @@ describe("Nebius API", () => {
129129 expect ( computerUseModels ) . toContain ( "anthropic/claude-3.5-sonnet" )
130130 expect ( computerUseModels ) . toContain ( "anthropic/claude-3.7-sonnet" )
131131
132- // Verify these models are in the COMPUTER_USE_MODELS set
132+ // Verify these models are in the LITELLM_COMPUTER_USE_MODELS set
133133 computerUseModels . forEach ( ( modelId ) => {
134- expect ( COMPUTER_USE_MODELS . has ( modelId ) ) . toBe ( true )
134+ expect ( LITELLM_COMPUTER_USE_MODELS . has ( modelId ) ) . toBe ( true )
135135 } )
136136 } )
137137
You can’t perform that action at this time.
0 commit comments