Skip to content

Latest commit

 

History

History
32 lines (31 loc) · 2.8 KB

hermes-2-pro-mistral-7b.md

File metadata and controls

32 lines (31 loc) · 2.8 KB
model task_type model_display_name layout weight title json_schema
id source name description task tags properties
44774b85-08c8-4bb8-8d2a-b06ebc538a79
2
@hf/nousresearch/hermes-2-pro-mistral-7b
Hermes 2 Pro on Mistral 7B is the new flagship 7B Hermes! Hermes 2 Pro is an upgraded, retrained version of Nous Hermes 2, consisting of an updated and cleaned version of the OpenHermes 2.5 Dataset, as well as a newly introduced Function Calling and JSON Mode dataset developed in-house.
id name description
c329a1f9-323d-4e91-b2aa-582dd4188d34
Text Generation
Family of generative text models, such as large language models (LLM), that can be adapted for a variety of natural language tasks.
property_id value
beta
true
property_id value
max_batch_prefill_tokens
8192
property_id value
max_input_length
3072
property_id value
max_total_tokens
4096
text-generation
hermes-2-pro-mistral-7b
model
0
hermes-2-pro-mistral-7b
input output
{ "type": "object", "oneOf": [ { "properties": { "prompt": { "type": "string", "maxLength": 4096 }, "raw": { "type": "boolean", "default": false }, "stream": { "type": "boolean", "default": false }, "max_tokens": { "type": "integer", "default": 256 } }, "required": [ "prompt" ] }, { "properties": { "messages": { "type": "array", "items": { "type": "object", "properties": { "role": { "type": "string" }, "content": { "type": "string", "maxLength": 4096 } }, "required": [ "role", "content" ] } }, "stream": { "type": "boolean", "default": false }, "max_tokens": { "type": "integer", "default": 256 } }, "required": [ "messages" ] } ] }
{ "oneOf": [ { "type": "object", "contentType": "application/json", "properties": { "response": { "type": "string" } } }, { "type": "string", "contentType": "text/event-stream", "format": "binary" } ] }