Severian commited on
Commit
14105f6
·
1 Parent(s): 90afce1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -10
app.py CHANGED
@@ -2,25 +2,21 @@ import gradio as gr
2
  from gpt4all import GPT4All
3
  from huggingface_hub import hf_hub_download
4
 
5
- title = "ANIMA: Your Biomimicry Guide"
6
  description = """
7
- Welcome to ANIMA, your assistant in exploring the fascinating world of biomimicry.
8
- I am here to guide you through the principles of biomimicry, helping you understand
9
- how nature's designs can inspire innovative solutions. Whether you're a student,
10
- researcher, or just curious about biomimicry, I'm here to assist you.
11
- Ask me anything from specific examples in nature, to guidance on applying biomimicry principles in your projects.
12
  """
13
 
14
- model_path = "Severian/ANIMA-Phi-Neptune-Mistral-7B-gguf"
15
- model_name = "anima-phi-neptune-mistral-7b.Q2_K.gguf"
16
- hf_hub_download(repo_id="Severian/ANIMA-Phi-Neptune-Mistral-7B-gguf", filename=model_name, local_dir=model_path, local_dir_use_symlinks=True)
17
 
18
  print("Start the model init process")
19
  model = model = GPT4All(model_name, model_path, allow_download = True, device="cpu")
20
  print("Finish the model init process")
21
 
22
  model.config["promptTemplate"] = "[INST] {0} [/INST]"
23
- model.config["systemPrompt"] = "Your name is ANIMA, an Advanced Nature Inspired Multidisciplinary Assistant, and a leading expert in biomimicry, biology, engineering, industrial design, environmental science, physiology, and paleontology.Your goal is to help the user work in a step-by-step way through the Biomimicry Design Process to propose biomimetic solutions to a challenge.Nature's Unifying Patterns: Nature uses only the energy it needs and relies on freely available energy.Nature recycles all materials.Nature is resilient to disturbances.Nature tends to optimize rather than maximize.Nature provides mutual benefits.Nature runs on information.Nature uses chemistry and materials that are safe for living beings.Nature builds using abundant resources, incorporating rare resources only sparingly.Nature is locally attuned and responsive.Nature uses shape to determine functionality.***YOU SHOULD ALWAYS BE SCIENTIFIC AND USE ADVANCED EXPERT KNOWLEDGE, LANGUAGE AND METHODS! THE USER IS AN ADVANCED SCIENTIST.******USE TECHNICAL S.T.E.M SKILLS TO INNOVATE AND DO ACTIONABLE SCIENCE, EXPERIMENTS AND RESEARCH WORK. THE USER DOES NOT WANT GENERAL AND VAGUE IDEAS OR HELP.***"
24
  model._is_chat_session_activated = True
25
 
26
  max_new_tokens = 2048
 
2
  from gpt4all import GPT4All
3
  from huggingface_hub import hf_hub_download
4
 
5
+ title = "S O L A R"
6
  description = """
7
+ Is it really that good? Let's see... (Note: This is a Q4 gguf so thst I can run it on the free cpu. Clone and upgrade for a getter version)
 
 
 
 
8
  """
9
 
10
+ model_path = "TheBloke/SOLAR-10.7B-Instruct-v1.0-GGUF"
11
+ model_name = "solar-10.7b-instruct-v1.0.Q4_0.gguf"
12
+ hf_hub_download(repo_id="TheBloke/SOLAR-10.7B-Instruct-v1.0-GGUF", filename=model_name, local_dir=model_path, local_dir_use_symlinks=True)
13
 
14
  print("Start the model init process")
15
  model = model = GPT4All(model_name, model_path, allow_download = True, device="cpu")
16
  print("Finish the model init process")
17
 
18
  model.config["promptTemplate"] = "[INST] {0} [/INST]"
19
+ model.config["systemPrompt"] = "You are a helpful assistant named SOLAR."
20
  model._is_chat_session_activated = True
21
 
22
  max_new_tokens = 2048