I need to pass extra custom parameters related to user key in request body to LLM.
Below is example with "user" parameter.
Cannot find any example if AzureAugmentedLLM supports that, if not would be good to add it or share workaround.
{
"messages": [
{
"role": "system",
"content": "You are a chatbot"
},
{
"role": "user",
"content": "who is the president of USA."
}
],
"user": "{"appkey": ""}",
"stop": [
"<|im_end|>"
]
}