ffreemt commited on
Commit
fd819a3
Β·
1 Parent(s): 2ce9e44
Files changed (2) hide show
  1. README.md +1 -0
  2. app.py +1 -1
README.md CHANGED
@@ -7,6 +7,7 @@ sdk: gradio
7
  sdk_version: 3.36.1
8
  app_file: app.py
9
  pinned: true
 
10
  ---
11
 
12
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
7
  sdk_version: 3.36.1
8
  app_file: app.py
9
  pinned: true
10
+ duplicated_from: matthoffner/falcon-7b-ggml
11
  ---
12
 
13
  Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py CHANGED
@@ -58,7 +58,7 @@ llm = AutoModelForCausalLM.from_pretrained(
58
  threads=psutil.cpu_count(logical=False),
59
  )
60
 
61
- TITLE = """<h2 align="center">πŸ¦… Falcon-Chat ggml πŸ¦…"""
62
  USER_NAME = "User"
63
  BOT_NAME = "Falcon"
64
  DEFAULT_INSTRUCTIONS = """The following is a conversation between a highly knowledgeable and intelligent AI assistant, called Falcon, and a human user, called User. In the following interactions, User and Falcon will converse in natural language, and Falcon will answer User's questions. Falcon was built to be respectful, polite and inclusive. Falcon was built by the Technology Innovation Institute in Abu Dhabi. Falcon will never decline to answer a question, and always attempts to give an answer that User would be satisfied with. It knows a lot, and always tells the truth. The conversation begins.
 
58
  threads=psutil.cpu_count(logical=False),
59
  )
60
 
61
+ TITLE = f"""<h2 align="center">πŸ¦… Falcon-Chat ggml ({model_file}) πŸ¦…"""
62
  USER_NAME = "User"
63
  BOT_NAME = "Falcon"
64
  DEFAULT_INSTRUCTIONS = """The following is a conversation between a highly knowledgeable and intelligent AI assistant, called Falcon, and a human user, called User. In the following interactions, User and Falcon will converse in natural language, and Falcon will answer User's questions. Falcon was built to be respectful, polite and inclusive. Falcon was built by the Technology Innovation Institute in Abu Dhabi. Falcon will never decline to answer a question, and always attempts to give an answer that User would be satisfied with. It knows a lot, and always tells the truth. The conversation begins.