from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = CreateAgentArtifactRequest(name="Example")
result = client.artifact_schemas.create(body=body)
print(result){
"id": "<string>",
"name": "<string>",
"display_name": "<string>",
"version": "<string>"
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = CreateAgentArtifactRequest(name="Example")
result = client.artifact_schemas.create(body=body)
print(result){
"id": "<string>",
"name": "<string>",
"display_name": "<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 creating a new agent artifact.
Human-readable name of the artifact (letters, numbers, and spaces only). Converted to kebab-case internally.
Artifact type (json, markdown, csv, yaml, text, html, pdf)
json, markdown, csv, yaml, text, html, pdf Schema definition
Description of the artifact
Whether agent must produce this artifact
Maximum artifact size in bytes
Storage strategy (inline, gcs, auto)
inline, gcs, auto Was this page helpful?