POST
/
api
/
projects
/
{projectName}
/
agents
curl --request POST \
  --url http://127.0.0.1:47334/api/projects/{projectName}/agents \
  --header 'Content-Type: application/json' \
  --data '{
  "agent": {
    "name": "<string>",
    "model": "<string>",
    "skills": [
      "<string>"
    ]
  }
}'
{
  "name": "<string>",
  "model": "<string>",
  "skills": [
    "<string>"
  ]
}

Path Parameters

projectName
string
required

The name of the project where agent resides

Body

application/json
agent
object

Response

200
application/json
Created an agent
name
string
model
string

A conversational model used by an agent

skills
string[]

One or more skills that an agent can use