File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,10 @@ import { Providers } from "./providers.js";
2020import { callModel as callModelFunc } from "../funcs/callModel.js" ;
2121import { ResponseWrapper } from "../lib/response-wrapper.js" ;
2222import { RequestOptions } from "../lib/sdks.js" ;
23- import { EnhancedTool , MaxToolRounds } from "../lib/tool-types.js" ;
23+ import { EnhancedTool , MaxToolRounds , ToolType } from "../lib/tool-types.js" ;
2424import * as models from "../models/index.js" ;
25+ export { ToolType } ;
26+ export type { EnhancedTool , MaxToolRounds } ;
2527// #endregion imports
2628
2729export class OpenRouter extends ClientSDK {
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ describe("callModel E2E Tests", () => {
6161
6262 expect ( text ) . toBeDefined ( ) ;
6363 expect ( text . toLowerCase ( ) ) . toContain ( "bob" ) ;
64+ console . log ( text )
6465 } ) ;
6566 } ) ;
6667
You can’t perform that action at this time.
0 commit comments