Update app.py
Browse files
app.py
CHANGED
@@ -3,3 +3,9 @@ import os
|
|
3 |
#os.system('git clone https://github.com/tloen/alpaca-lora.git')
|
4 |
import streamlit as st
|
5 |
from streamlit_chat import message as st_message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
#os.system('git clone https://github.com/tloen/alpaca-lora.git')
|
4 |
import streamlit as st
|
5 |
from streamlit_chat import message as st_message
|
6 |
+
import bitsandbytes as bnb
|
7 |
+
from transformers import GenerationConfig
|
8 |
+
from transformers import AutoTokenizer, AutoConfig, LlamaForCausalLM, LlamaTokenizer
|
9 |
+
|
10 |
+
|
11 |
+
|