Adrian Cowham commited on
Commit
e031d5d
1 Parent(s): 2a831b1

added package namespacing

Browse files
Files changed (1) hide show
  1. src/app.py +3 -3
src/app.py CHANGED
@@ -11,9 +11,9 @@ from langchain.prompts.chat import (ChatPromptTemplate,
11
  HumanMessagePromptTemplate,
12
  SystemMessagePromptTemplate)
13
 
14
- from .core.chunking import chunk_file
15
- from .core.embedding import embed_files
16
- from .core.parsing import read_file
17
 
18
  VECTOR_STORE = "faiss"
19
  MODEL = "openai"
 
11
  HumanMessagePromptTemplate,
12
  SystemMessagePromptTemplate)
13
 
14
+ from src.core.chunking import chunk_file
15
+ from src.core.embedding import embed_files
16
+ from src.core.parsing import read_file
17
 
18
  VECTOR_STORE = "faiss"
19
  MODEL = "openai"