TODO
POST
/api/llm/{serverId}/{path}
const url = 'http://localhost:5173/api/llm/example/example';const options = { method: 'POST', headers: {cookie: 'authjs.session-token=<authjs.session-token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://localhost:5173/api/llm/example/example \ --cookie authjs.session-token=<authjs.session-token>Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”serverId
required
string
path
required
string
Catch-all segment; may contain slashes.
Responses
Section titled “Responses”TODO

