Update app.py
Browse files
app.py
CHANGED
@@ -9,9 +9,9 @@ model_cache = {}
|
|
9 |
|
10 |
# Available models
|
11 |
AVAILABLE_MODELS = {
|
12 |
-
"
|
13 |
-
"
|
14 |
-
"
|
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 |
-
# π
|
192 |
|
193 |
Chat with the Nous-1 models by Noema Research.
|
194 |
|
195 |
**Available Models:**
|
196 |
-
-
|
197 |
-
-
|
198 |
-
-
|
199 |
""")
|
200 |
|
201 |
with gr.Row():
|
@@ -285,12 +285,12 @@ def create_interface():
|
|
285 |
gr.Markdown("""
|
286 |
---
|
287 |
|
288 |
-
### About the
|
289 |
-
**
|
290 |
|
291 |
-
**
|
292 |
|
293 |
-
**
|
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 |
|