curl --request POST \
--url http://localhost:8000/v1/knowledge \
--header 'Content-Type: application/json' \
--data '
{
"user_id": "alice",
"name": "Company Handbook",
"chunks": [
{
"content": "All employees must complete onboarding within 30 days."
},
{
"content": "Remote work is allowed up to 3 days per week."
}
]
}
'