POST
/
treatment_plan_agent_v2
curl --request POST \
  --url https://agents-api.puppilot.co/treatment_plan_agent_v2 \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "input": "<String>"
}'
{
  "status": true,
  "reason": "<string>",
  "response": {
    "Plain English Concise": "<string>",
    "Plain English Summary": "<string>",
    "Treatment Plan Details": {
      "diagnosis_name": "<string>",
      "treatment_plan_name": "<string>",
      "treatment_goal": "<string>",
      "medications": "<string>",
      "dietary_management": "<string>",
      "lifestyle_modifications": "<string>",
      "symptom_management": "<string>",
      "non-surgical_options": "<string>",
      "possible_surgical_options": "<string>",
      "preventative_options": "<string>",
      "regular_veterinary_monitoring": "<string>",
      "owner_education": "<string>"
    }
  }
}

How to Use

Required Input

  • Species (e.g., dog, cat) must be included for an accurate treatment plan.

Recommended Details (Optional but improves accuracy)

  • Signalment: Breed, age, sex, and spayed/neutered status.
  • Specific Disease of Interest: If you are looking for a treatment plan for a particular condition, providing the disease name ensures a more targeted response.
  • Medical History: If no specific disease is named, the AI will analyze relevant medical history and suggest treatment plans based on the most likely differentials.

Accepted Input Types

We can process various input formats, including:

  • A structured clinical history
  • A free-form chat history with relevant details (This input type can be highly customized to the user’s needs.)
  • A direct question about a disease
  • A summarized set of symptoms

Inputs must be relevant to veterinary medicine and specific to the requested agent. However, the system is designed to process various formats and will extract the necessary medical context while filtering out irrelevant details to generate accurate treatment plans.

Request Example

{
  "input": "Whats the treatment plan for atopic dermatitis in a dog"
}

Example Response

{
    "reason": "The inquiry is relevant to veterinary medicine as it pertains to the treatment plan for atopic dermatitis, a common skin condition in dogs. This implies the need for a veterinary treatment plan to manage the condition.",
    "response": {
        "Plain English Concise": "Management of canine atopic dermatitis includes antihistamines, hypoallergenic diet, regular baths, and allergen avoidance, with follow-up every 4-6 weeks; consider immunotherapy if specific allergens are identified.",
        "Plain English Summary": "The Atopic Dermatitis Management Plan for this canine patient focuses on reducing pruritus and inflammation while improving skin barrier function and preventing flare-ups. Medications such as Diphenhydramine and Cetirizine may be prescribed for mild cases, although efficacy can vary. Dietary management includes introducing a hypoallergenic or novel protein diet and omega fatty acid supplements if food allergies are suspected. Regular veterinary monitoring is crucial, with follow-ups every 4-6 weeks to assess treatment efficacy and make necessary adjustments. Lifestyle modifications, such as minimizing allergen exposure and regular bathing with hypoallergenic shampoos, are recommended, and allergen-specific immunotherapy may be considered if specific allergens are identified. Owner education is essential for recognizing early flare-up signs and maintaining a symptom diary to guide ongoing management.",
        "Treatment Plan Details": {
            "Atopic Dermatitis": {
                "diagnosis_name": "Atopic Dermatitis",
                "dietary_management": "Implement a hypoallergenic or novel protein diet if food allergies are suspected or confirmed. Introduce omega-3 and omega-6 fatty acid supplements at 40 mg/kg and 10 mg/kg respectively to improve skin barrier function and reduce inflammation.",
                "lifestyle_modifications": "Minimize exposure to known allergens by using air purifiers, washing bedding frequently, and avoiding walks in high pollen areas during peak seasons. Consider using topical treatments like sphingolipids to enhance skin barrier function.",
                "medications": "Antihistamines such as Diphenhydramine (1-2 mg/kg every 8-12 hours) and Cetirizine (1 mg/kg once daily) can be used for mild cases, though efficacy may vary. Corticosteroids like Prednisone should be administered at 0.5-1 mg/kg daily for 5-7 days, then tapered to the lowest effective dose. Immunomodulatory medications such as Cyclosporine (Atopica) at 5 mg/kg daily and Oclacitinib (Apoquel) at 0.4-0.6 mg/kg twice daily for 14 days, then once daily, are effective for long-term management. Biologic therapy with Lokivetmab (Cytopoint) is administered at 1-3 mg/kg subcutaneously every 4-8 weeks as needed for pruritus control.",
                "non-surgical_options": "Consider allergen-specific immunotherapy (ASIT) if specific allergens are identified and the patient is a good candidate. This involves subcutaneous injections or sublingual administration of allergen extracts over several months to years.",
                "owner_education": "Educate owners on the importance of adhering to the treatment plan, recognizing early signs of flare-ups, and maintaining a diary of symptoms and potential triggers. Discuss potential side effects of medications and the importance of regular monitoring.",
                "possible_surgical_options": "Not applicable",
                "preventative_options": "Implement environmental control measures and dietary management to prevent flare-ups. Consider alternative therapies like acupuncture or herbal supplements as adjunctive treatments. Regularly review and adjust the treatment plan based on the dog's response.",
                "regular_veterinary_monitoring": "Schedule follow-up appointments every 4-6 weeks initially to monitor response to treatment and adjust the plan as necessary. Educate the owner on recognizing early signs of flare-ups and monitor liver enzymes if using long-term corticosteroids.",
                "symptom_management": "Regular bathing with hypoallergenic or medicated shampoos, such as those containing chlorhexidine or phytosphingosine, to remove allergens and provide soothing relief. Use of antihistamines and corticosteroids for immediate relief as needed.",
                "treatment_goal": "To reduce pruritus and inflammation, improve skin barrier function, and prevent flare-ups in atopic dermatitis.",
                "treatment_plan_name": "Atopic Dermatitis Management Plan"
            }
        }
    },
    "status": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
input
string
required
Example:

"<String>"

Response

200 - application/json
Treatment plan details retrieved successfully.
status
boolean

If false, input was not related to treatment plans.

reason
string

A brief explanation of why the input is relevant to veterinary medicine.

response
object