File size: 1,199 Bytes
100334d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d94d4b4
100334d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
---
license: apache-2.0
language:
- en
base_model:
- MCES10-Software/Ricky-Llama-3.2
pipeline_tag: text-generation
---

# Ricky - Llama 3.2 Instruct

- Ricky is based on Llama-3.2-1B-Instruct-MLXTuned from MLX Community
- Fine Tuned on Custom Dataset that will not be open source 
- www.mces10-software.com/rickyai
- ULTRA FAST RESPONSES LOCALLY ON APPLE SILLICON MACHINES
- GGUF Available to download soon (1.21GB) q_8_0 Quantised

## Website 
- www.mces10-software.com/rickyai 

## Agree to the Model T&C

- You agree the Apache 2.0 License
- This is an open source model and people from Meta, MLX, MCES10 Software so don't claim as your own.

## Benchmark LM Studio M1 PRO 16 GB RAM

### Q: How to use async/await in JavaScript?

### A: 

Using async/await in JavaScript:
```javascript
async function example() {
    return "Hello";
}

example().then((res) => console.log(res));
```
Note that `example()` returns a promise and can be used with `async` keywords.
```javascript
async function example() {
    await new Promise(resolve => setTimeout(resolve, 1000));
    return "Hello";
}

example().then((res) => console.log(res));
```

### Info:

- 91.47 tok/sec
- 92 tokens
- 0.13s to first token