I just deployed dolphin2.2-mistral using hugging face DEPLOY->INFERENCE ENDPOINT and got it working.
It does take inputs as payload and working fine. My issue is, what value should I send to have GPT like experience? Something like system, user and assistant.
How can I change the system prompt, and send chain of conversational messages that I can do like that of Openai gpt?
Payload like :
{
“inputs”: “What are different ways to copy with long stressful day?”,
“parameters”: {
“max_new_tokens”: 100
}
}
works.
But, how can I send conversational type messages?
Also, if I deploy a model, how can I change the code myself?
Sorry if this is 2 questions merged into one.