Spestly commited on
Commit
32f6410
Β·
verified Β·
1 Parent(s): 659ffdc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -9,9 +9,9 @@ model_cache = {}
9
 
10
  # Available models
11
  AVAILABLE_MODELS = {
12
- "Nous-1-4B": "NoemaResearch/Nous-1-4B",
13
- "Nous-1-8B": "NoemaResearch/Nous-1-8B",
14
- "Nous-1-2B": "NoemaResearch/Nous-1-2B",
15
  }
16
 
17
  @spaces.GPU
@@ -188,14 +188,14 @@ def generate(
188
  def create_interface():
189
  with gr.Blocks(title="Multi-Model Chat", theme=gr.themes.Soft()) as demo:
190
  gr.Markdown("""
191
- # πŸš€ Nous-1 Model Chat Interface
192
 
193
  Chat with the Nous-1 models by Noema Research.
194
 
195
  **Available Models:**
196
- - Nous-1-4B (4 billion parameters)
197
- - Nous-1-8B (8 billion parameters)
198
- - Nous-1-2B (2 billion parameters)
199
  """)
200
 
201
  with gr.Row():
@@ -285,12 +285,12 @@ def create_interface():
285
  gr.Markdown("""
286
  ---
287
 
288
- ### About the Nous-1 Models
289
- **Nous-1-2B**: 2 billion parameter model by Noema Research, designed for fast and quick infrencing
290
 
291
- **Nous-1-4B**: 4 billion parameter model by Noema Research, optimisd for efficient conversation and text generation
292
 
293
- **Nous-1-8B**: 8 billion parameter model by Noema Research, offering enhanced capabilities and better performance for complex tasks
294
 
295
  All models are designed for conversational AI and support various text generation tasks. The 8B model provides more sophisticated responses but requires more computational resources.
296
 
 
9
 
10
  # Available models
11
  AVAILABLE_MODELS = {
12
+ "Apollo-1-4B": "NoemaResearch/Apollo-1-4B",
13
+ "Apollo-1-8B": "NoemaResearch/Apollo-1-8B",
14
+ "Apollo-1-2B": "NoemaResearch/Apollo-1-2B",
15
  }
16
 
17
  @spaces.GPU
 
188
  def create_interface():
189
  with gr.Blocks(title="Multi-Model Chat", theme=gr.themes.Soft()) as demo:
190
  gr.Markdown("""
191
+ # πŸš€ Apollo-1 Model Chat Interface
192
 
193
  Chat with the Nous-1 models by Noema Research.
194
 
195
  **Available Models:**
196
+ - Apollo-1-4B (4 billion parameters)
197
+ - Apollo-1-8B (8 billion parameters)
198
+ - Apollo-1-2B (2 billion parameters)
199
  """)
200
 
201
  with gr.Row():
 
285
  gr.Markdown("""
286
  ---
287
 
288
+ ### About the Apollo-1 Models
289
+ **Apollo-1-2B**: 2 billion parameter model by Noema Research, designed for fast and quick infrencing
290
 
291
+ **Apollo-1-4B**: 4 billion parameter model by Noema Research, optimisd for efficient conversation and text generation
292
 
293
+ **Apollo-1-8B**: 8 billion parameter model by Noema Research, offering enhanced capabilities and better performance for complex tasks
294
 
295
  All models are designed for conversational AI and support various text generation tasks. The 8B model provides more sophisticated responses but requires more computational resources.
296