tushar-r-pawar commited on
Commit
d841c1c
·
verified ·
1 Parent(s): a513cc4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -13
app.py CHANGED
@@ -3,19 +3,10 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
3
  import streamlit as st
4
  import airllm
5
  import os
6
- from airllm.auto_model import AutoModel
7
  from dotenv import load_dotenv
8
 
9
  load_dotenv()
10
 
11
-
12
-
13
-
14
-
15
-
16
-
17
- api_token = os.getenv("HUGGINGFACEHUB_API_TOKEN")
18
-
19
  # Retrieve the API token from the environment variables
20
  api_token = os.getenv("HUGGINGFACEHUB_API_TOKEN")
21
 
@@ -27,11 +18,9 @@ model = AutoModelForCausalLM.from_pretrained(
27
  torch_dtype=torch.bfloat16,
28
  use_auth_token=api_token
29
  )
30
- # Load the base version of the model
31
- #model = AutoModelForCausalLM.from_pretrained(model_name)
32
 
33
  # Initialize AirLLM
34
- air_llm = airllm.AutoModel(model)
35
 
36
  # Streamlit app configuration
37
  st.set_page_config(
@@ -85,7 +74,7 @@ user_input = st.text_input("You: ", "")
85
  if st.button("Send"):
86
  if user_input:
87
  # Generate response using AirLLM
88
- response = air_llm.generate_response(user_input)
89
  st.text_area("Bot:", value=response, height=200, max_chars=None)
90
  else:
91
  st.warning("Please enter a message.")
 
3
  import streamlit as st
4
  import airllm
5
  import os
 
6
  from dotenv import load_dotenv
7
 
8
  load_dotenv()
9
 
 
 
 
 
 
 
 
 
10
  # Retrieve the API token from the environment variables
11
  api_token = os.getenv("HUGGINGFACEHUB_API_TOKEN")
12
 
 
18
  torch_dtype=torch.bfloat16,
19
  use_auth_token=api_token
20
  )
 
 
21
 
22
  # Initialize AirLLM
23
+ air_llm = airllm.AutoModel()
24
 
25
  # Streamlit app configuration
26
  st.set_page_config(
 
74
  if st.button("Send"):
75
  if user_input:
76
  # Generate response using AirLLM
77
+ response = air_llm.generate_response(model, tokenizer, user_input)
78
  st.text_area("Bot:", value=response, height=200, max_chars=None)
79
  else:
80
  st.warning("Please enter a message.")