from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateAgentArtifactRequest(name="Example")
result = client.artifact_schemas.update("artifact_id_value", body=body)
print(result){
"id": "<string>",
"version": "<string>"
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateAgentArtifactRequest(name="Example")
result = client.artifact_schemas.update("artifact_id_value", body=body)
print(result){
"id": "<string>",
"version": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Request model for updating an agent artifact. Name is intentionally excluded as it serves as the stable identifier for a version chain and cannot be changed.
Human-readable name of the artifact
Artifact type
json, markdown, csv, yaml, text, html, pdf Description of the artifact
Whether agent must produce this artifact
Optional override for the tool's parameters schema
Maximum artifact size in bytes
Storage strategy
inline, gcs, auto Was this page helpful?