File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed
packages/multimodal/agent/src/agent Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -42,9 +42,6 @@ const mockConfig: MockConfig = {
42
42
* @returns Whether mock is successfully enabled
43
43
*/
44
44
export function enableMockLLMClient ( mockClient : MockLLMClient ) : boolean {
45
- console . log ( 'process.env.DUMP_AGENT_SNAPSHOP' , process . env . DUMP_AGENT_SNAPSHOP ) ;
46
- console . log ( 'process.env.TEST_AGENT_SNAPSHOP' , process . env . TEST_AGENT_SNAPSHOP ) ;
47
-
48
45
// Allow mocking to be enabled only in test environment
49
46
if ( process . env . DUMP_AGENT_SNAPSHOP || process . env . TEST_AGENT_SNAPSHOP ) {
50
47
mockConfig . enabled = true ;
@@ -78,10 +75,6 @@ export function getLLMClient(
78
75
reasoningOptions : AgentReasoningOptions ,
79
76
requestInterceptor ?: ( provider : string , request : LLMRequest , baseURL ?: string ) => any ,
80
77
) {
81
- console . log ( 'process.env.DUMP_AGENT_SNAPSHOP' , process . env . DUMP_AGENT_SNAPSHOP ) ;
82
- console . log ( 'process.env.TEST_AGENT_SNAPSHOP' , process . env . TEST_AGENT_SNAPSHOP ) ;
83
- console . log ( 'mockConfig' , mockConfig ) ;
84
-
85
78
// If mock is enabled and mockClient exists, return the mock client directly
86
79
if (
87
80
( process . env . DUMP_AGENT_SNAPSHOP || process . env . TEST_AGENT_SNAPSHOP ) &&
You can’t perform that action at this time.
0 commit comments