Update app.py
Browse files
app.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
from llama_cpp import Llama
|
| 2 |
import streamlit as st
|
| 3 |
from langchain.llms.base import LLM
|
| 4 |
-
from llama_index.embeddings import LangchainEmbedding
|
| 5 |
from llama_index import PromptHelper
|
| 6 |
from typing import Optional, List, Mapping, Any
|
| 7 |
-
from langchain.embeddings
|
| 8 |
import pandas as pd
|
| 9 |
|
| 10 |
# Set the page config as the first command
|
|
|
|
| 1 |
from llama_cpp import Llama
|
| 2 |
import streamlit as st
|
| 3 |
from langchain.llms.base import LLM
|
| 4 |
+
#from llama_index.embeddings import LangchainEmbedding
|
| 5 |
from llama_index import PromptHelper
|
| 6 |
from typing import Optional, List, Mapping, Any
|
| 7 |
+
from langchain.embeddings import HuggingFaceEmbeddings
|
| 8 |
import pandas as pd
|
| 9 |
|
| 10 |
# Set the page config as the first command
|