This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import streamlit as st | |
from llama_index.legacy import ( | |
SimpleDirectoryReader, VectorStoreIndex, ServiceContext | |
) | |
from llama_cpp import Llama | |
from llama_index.legacy.llms.llama_utils import ( | |
messages_to_prompt, completion_to_prompt | |
) | |
from langchain.schema import SystemMessage, HumanMessage, AIMessage |