File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/agents/__tests__ Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33on :
44 push :
5- branches : [cairo-chatbot, main]
5+ branches : [main]
66 pull_request :
7- branches : [cairo-chatbot, main]
7+ branches : [main]
88
99permissions :
1010 contents : read
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { RagPipeline } from '../src/core/pipeline/ragPipeline';
33import { AvailableAgents , LLMConfig , DocumentSource } from '../src/types' ;
44import { Embeddings } from '@langchain/core/embeddings' ;
55import { BaseChatModel } from '@langchain/core/language_models/chat_models' ;
6- import { VectorStore } from '../src/db/vectorStore ' ;
6+ import { VectorStore } from '../src/db/postgresVectorStore ' ;
77import { mockDeep , MockProxy } from 'jest-mock-extended' ;
88import { BaseMessage } from '@langchain/core/messages' ;
99import EventEmitter from 'events' ;
@@ -103,7 +103,7 @@ describe('RagAgentFactory', () => {
103103 // Assert
104104 expect ( RagPipeline ) . toHaveBeenCalledTimes ( 1 ) ;
105105 expect ( emitter ) . toBeInstanceOf ( EventEmitter ) ;
106-
106+
107107 // Check streaming option is passed
108108 const executeSpy = ( RagPipeline as jest . Mock ) . mock . results [ 0 ] . value
109109 . execute ;
You can’t perform that action at this time.
0 commit comments