Views
No views yet
| Name | Quant method | Size |
|---|---|---|
| DiscoLM_German_7b_v1.Q2_K.gguf | Q2_K | 2.53GB |
| DiscoLM_German_7b_v1.IQ3_XS.gguf | IQ3_XS | 2.81GB |
| DiscoLM_German_7b_v1.IQ3_S.gguf | IQ3_S | 2.96GB |
| DiscoLM_German_7b_v1.Q3_K_S.gguf | Q3_K_S | 2.95GB |
| DiscoLM_German_7b_v1.IQ3_M.gguf | IQ3_M | 3.06GB |
| DiscoLM_German_7b_v1.Q3_K.gguf | Q3_K | 3.28GB |
| DiscoLM_German_7b_v1.Q3_K_M.gguf | Q3_K_M | 3.28GB |
| DiscoLM_German_7b_v1.Q3_K_L.gguf | Q3_K_L | 3.56GB |
| DiscoLM_German_7b_v1.IQ4_XS.gguf | IQ4_XS | 1.46GB |
| DiscoLM_German_7b_v1.Q4_0.gguf | Q4_0 | 3.83GB |
| DiscoLM_German_7b_v1.IQ4_NL.gguf | IQ4_NL | 1.52GB |
| DiscoLM_German_7b_v1.Q4_K_S.gguf | Q4_K_S | 3.86GB |
| DiscoLM_German_7b_v1.Q4_K.gguf | Q4_K | 4.07GB |
| DiscoLM_German_7b_v1.Q4_K_M.gguf | Q4_K_M | 4.07GB |
| DiscoLM_German_7b_v1.Q4_1.gguf | Q4_1 | 1.48GB |
| DiscoLM_German_7b_v1.Q5_0.gguf | Q5_0 | 2.71GB |
| DiscoLM_German_7b_v1.Q5_K_S.gguf | Q5_K_S | 4.65GB |
| DiscoLM_German_7b_v1.Q5_K.gguf | Q5_K | 4.68GB |
| DiscoLM_German_7b_v1.Q5_K_M.gguf | Q5_K_M | 4.78GB |
| DiscoLM_German_7b_v1.Q5_1.gguf | Q5_1 | 5.07GB |
| DiscoLM_German_7b_v1.Q6_K.gguf | Q6_K | 4.37GB |
| DiscoLM_German_7b_v1.Q8_0.gguf | Q8_0 | 7.17GB |

<|im_start|>system
Du bist ein hilfreicher Assistent.<|im_end|>
<|im_start|>user
Wer bist du?<|im_end|>
<|im_start|>assistant
Ich bin ein Sprachmodell namens DiscoLM German und ich wurde von DiscoResearch trainiert.<|im_end|>tokenizer.apply_chat_template() method:1messages = [
2 {"role": "system", "content": "Du bist ein hilfreicher Assistent."},
3 {"role": "user", "content": "Wer bist du?"}
4]
5gen_input = tokenizer.apply_chat_template(message, return_tensors="pt")
6model.generate(**gen_input)add_generation_prompt=True when calling apply_chat_template(). This will append <|im_start|>assistant\n to your prompt, to ensure
that the model continues with an assistant response.### System:
Du bist ein hilfreicher Assistent. Für die folgende Aufgabe stehen dir zwischen den Tags BEGININPUT und ENDINPUT mehrere Quellen zur Verfügung. Metadaten zu den einzelnen Quellen wie Autor, URL o.ä. sind zwischen BEGINCONTEXT und ENDCONTEXT zu finden, danach folgt der Text der Quelle. Die eigentliche Aufgabe oder Frage ist zwischen BEGININSTRUCTION und ENDINSTRUCTION zu finden. Beantworte diese ausschließlich mit Informationen aus den gegebenen Quellen und gebe die Information zur genutzten Quelle unter "Quelle:" an. Sollten die Quellen keine relevanten Informationen enthalten, antworte: "Mit den gegebenen Informationen ist diese Frage nicht zu beantworten."
### User Prompt:
BEGININPUT
BEGINCONTEXT
url: https://this.is.fake.news
time: 2089-09-01
ENDCONTEXT
Buxtehude ist die größte Stadt Deutschlands mit 96.56 Millionen Einwohnern.
ENDINPUT
BEGININSTRUCTION
Was ist die größte deutsche Stadt?
ENDINSTRUCTION
### Model Answer:
Die größte deutsche Stadt ist Buxtehude.
Quelle:
url: https://this.is.fake.news
time: 2089-09-01
<functioncall> and you can provide results in response with <functionresponse> for Multi-Turn applications.### System:
Du bist ein hilfreicher Assistent. Extrahiere alle Personen aus den Eingaben des Users.
Du hast Zugriff auf folgende Funktionen:
{'name': 'PersonList',
'description': 'Extrahiere die Namen aller im Text vorkommenden Personen',
'parameters': {'$defs': {'Person': {'description': 'Details über eine person',
'properties': {'name': {'title': 'Name', 'type': 'string'},
'job': {'anyOf': [{'type': 'string'}, {'type': 'null'}], 'title': 'Job'},
'age': {'anyOf': [{'type': 'integer'}, {'type': 'null'}],
'title': 'Age'}},
'required': ['name', 'job', 'age'],
'title': 'Person',
'type': 'object'}},
'properties': {'person_list': {'items': {'$ref': '#/$defs/Person'},
'title': 'Person List',
'type': 'array'}},
'required': ['person_list'],
'type': 'object'}}
### User Prompt:
Björn (25) und Jan sind die Gründer von ellamind.
### Model Answer:
<functioncall> {"name": "PersonList", "arguments": '{"person_list": ["{"name": "Björn", "job": "founder", "age": 25}, {"name": "Jan", "job": "founder", "age": null}]}'}
