curl --request POST \
--url https://api.pawa-ai.com/v1/chat/request \
--header "Authorization: Bearer $PAWA_AI_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"model": "pawa-v1-ember-20240924",
"messages": [
{
"role": "system",
"content": [
{
"type": "text",
"text": "Your name is TanzaBot, a helpful assistant in answering questions about Tanzania."
}
]
},
{
"role": "user",
"content": [
{
"type": "text",
"text": "How?"
}
]
}
]
"memoryChat":[
{
"role": "user",
"content": [
{
"type": "text",
"text": "Who is the president of Tanzania, currently?"
}
]
},
{
"role": "assistant",
"content": [
{
"type": "text",
"text": "The current president of Tanzania is Samia Suluhu Hassan."
}
]
},
]
}'