const response = await axios.post("https://api.langdock.com/assistant/v1/chat/completions", {
assistant: {
name: "Custom Assistant",
instructions: "You are a helpful assistant",
model: "gpt-5", // Specify the model ID here
},
messages: [
{ role: "user", content: "Hello!" },
],
});