Update README.md
Browse files
README.md
CHANGED
@@ -10,20 +10,20 @@ pipeline_tag: text-generation
|
|
10 |
This is a fine-tuned version of Meta-llama-3B for Turkish instructions.
|
11 |
|
12 |
```markdown
|
13 |
-
#
|
14 |
|
15 |
-
Welcome to the
|
16 |
|
17 |
## Features
|
18 |
|
19 |
-
- **Language Support**:
|
20 |
- **Intelligent Responses**: Provides detailed answers to questions about various topics.
|
21 |
|
22 |
## Usage
|
23 |
|
24 |
### Setup
|
25 |
|
26 |
-
To use the
|
27 |
|
28 |
```bash
|
29 |
pip install -qU transformers bitsandbytes accelerate
|
@@ -31,7 +31,7 @@ pip install -qU transformers bitsandbytes accelerate
|
|
31 |
|
32 |
### Example Usage
|
33 |
|
34 |
-
Here’s how you can interact with
|
35 |
|
36 |
```python
|
37 |
import transformers
|
@@ -48,13 +48,13 @@ pipeline = transformers.pipeline(
|
|
48 |
|
49 |
# For English
|
50 |
messages = [
|
51 |
-
{"role": "system", "content": "You are a helpful chatbot named
|
52 |
{"role": "user", "content": "What is the law offices structure about in the US?"}
|
53 |
]
|
54 |
|
55 |
# For Turkish
|
56 |
messages = [
|
57 |
-
{"role": "system", "content": "Sen,
|
58 |
{"role": "user", "content": "Türkiyedeki baro yapılanması nasıldır?"}
|
59 |
]
|
60 |
|
|
|
10 |
This is a fine-tuned version of Meta-llama-3B for Turkish instructions.
|
11 |
|
12 |
```markdown
|
13 |
+
# Smart Chatbot
|
14 |
|
15 |
+
Welcome to the Smart Chatbot! Smart is a sophisticated conversational AI model based on the `zgrgr/Meta_llama-3-8B-Instruct` architecture. It’s designed to provide insightful and informative responses to user queries in both Turkish and English.
|
16 |
|
17 |
## Features
|
18 |
|
19 |
+
- **Language Support**: Smart can converse in both Turkish, English and other languages .
|
20 |
- **Intelligent Responses**: Provides detailed answers to questions about various topics.
|
21 |
|
22 |
## Usage
|
23 |
|
24 |
### Setup
|
25 |
|
26 |
+
To use the Smart chatbot, you'll need to install the necessary Python libraries. You can do this by running:
|
27 |
|
28 |
```bash
|
29 |
pip install -qU transformers bitsandbytes accelerate
|
|
|
31 |
|
32 |
### Example Usage
|
33 |
|
34 |
+
Here’s how you can interact with Smart:
|
35 |
|
36 |
```python
|
37 |
import transformers
|
|
|
48 |
|
49 |
# For English
|
50 |
messages = [
|
51 |
+
{"role": "system", "content": "You are a helpful chatbot named Smart who always responds with detailed and accurate information."},
|
52 |
{"role": "user", "content": "What is the law offices structure about in the US?"}
|
53 |
]
|
54 |
|
55 |
# For Turkish
|
56 |
messages = [
|
57 |
+
{"role": "system", "content": "Sen, Smart isimli Türkçe konuşan bir chatbotsun."},
|
58 |
{"role": "user", "content": "Türkiyedeki baro yapılanması nasıldır?"}
|
59 |
]
|
60 |
|