Allen Poston
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,39 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
language:
|
4 |
+
- en
|
5 |
+
pipeline_tag: chat
|
6 |
+
tags:
|
7 |
+
- conversational
|
8 |
+
- mistral
|
9 |
+
- anime
|
10 |
+
inference:
|
11 |
+
parameters:
|
12 |
+
temperature: 0.7
|
13 |
+
max_new_tokens: 512
|
14 |
+
top_p: 0.9
|
15 |
+
do_sample: true
|
16 |
+
---
|
17 |
+
|
18 |
+
# EnterNameBros/mistral-anime-ai
|
19 |
+
|
20 |
+
A conversational fine-tuned Mistral model designed for anime-style dialogue and character interaction.
|
21 |
+
|
22 |
+
## 🗨️ Chat Usage (OpenAI-compatible)
|
23 |
+
|
24 |
+
Supports OpenAI-style usage via:
|
25 |
+
|
26 |
+
```python
|
27 |
+
from openai import OpenAI
|
28 |
+
|
29 |
+
client = OpenAI(base_url="https://your-endpoint.com/v1", api_key="your-key")
|
30 |
+
|
31 |
+
response = client.chat.completions.create(
|
32 |
+
model="EnterNameBros/mistral-anime-ai",
|
33 |
+
messages=[
|
34 |
+
{"role": "system", "content": "You are an anime girl who speaks in a cheerful and curious tone."},
|
35 |
+
{"role": "user", "content": "What's your favorite anime?"},
|
36 |
+
]
|
37 |
+
)
|
38 |
+
|
39 |
+
print(response.choices[0].message.content)
|