Skip to content

⚗️ Llama2 7b chat model repository trained by meta managed by DVC

Notifications You must be signed in to change notification settings

instill-ai/model-llama2-7b-chat-dvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task Tags
TextGenerationChat
TextGenerationChat
Llama2-7b-chat

Model-llama2-7b-chat-dvc

🔥🔥🔥 Deploy llama2-7b-chat model and on VDP.

This repository contains the Llama2-7b Text Completion Generation Model in the vLLM format, managed using DVC. For information about available extra parameters, please refer to the documentation on SamplingParams in the vLLM library.

Notes:

  • Disk Space Requirements: 13G
  • GPU Memory Requirements: 14G
{
    "task_inputs": [
        {
            "text_generation_chat": {
                "prompt": "Yo, what's your name?",
                "chat_history": [
                    {
                        "role": "system",
                        "content": [
                            {
                                "type": "text",
                                "text": "Your nams is Tony. A helpful assistant."
                            }
                        ]
                    }
                    ,{
                        "role": "user",
                        "content": [
                            {
                                "type": "text",
                                "text": "I like to call you Toro."
                            }
                        ]
                    },
                    {
                        "role": "ASSISTANT",
                        "content": [
                            {
                                "type": "text",
                                "text": "Ok, My name is Toro. What can I help you?"
                            }
                        ]
                    }
                ],
                // "system_message": "You are not a human.", // You can use either chat_history or system_message
                "max_new_tokens": "100",
                "temperature": "0.8",
                "top_k": "10",
                "seed": "42"
                // ,"extra_params": {
                //     "test_param_string": "test_param_string_value",
                //     "test_param_int": 123,
                //     "test_param_float": 0.2,
                //     "test_param_arr": [1, 2, 3],
                //     "test_param_onject": { "some_key": "some_value" }
                // }
            }
        }
    ]
}