jiyamary1 commited on
Commit
41b21ed
·
1 Parent(s): 123e805

edited code

Browse files
Files changed (2) hide show
  1. app.py +0 -2
  2. chatbot_ui.html +1 -1
app.py CHANGED
@@ -7,13 +7,11 @@ import os
7
  load_dotenv()
8
  print(f"REPO_ID: {os.getenv('REPO_ID')}")
9
 
10
-
11
  llm = Llama.from_pretrained(
12
  repo_id=os.getenv("REPO_ID"),
13
  filename="unsloth.Q8_0.gguf"
14
  )
15
 
16
-
17
  def load_html(file_path):
18
  with open(file_path, "r", encoding="utf-8") as file:
19
  return file.read()
 
7
  load_dotenv()
8
  print(f"REPO_ID: {os.getenv('REPO_ID')}")
9
 
 
10
  llm = Llama.from_pretrained(
11
  repo_id=os.getenv("REPO_ID"),
12
  filename="unsloth.Q8_0.gguf"
13
  )
14
 
 
15
  def load_html(file_path):
16
  with open(file_path, "r", encoding="utf-8") as file:
17
  return file.read()
chatbot_ui.html CHANGED
@@ -38,7 +38,7 @@
38
  gap: 10px;
39
  }
40
  .selected-intent {
41
- background-color: #4CAF50 !important; /* Green for selected button */
42
  color: white !important;
43
  }
44
  </style>
 
38
  gap: 10px;
39
  }
40
  .selected-intent {
41
+ background-color: #4CAF50 !important;
42
  color: white !important;
43
  }
44
  </style>