from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = PublishAgentDefinitionRequest(name="Example")
result = client.agents.publish("agent_id_value", body=body)
print(result){
"id": "<string>",
"agent_definition_urn": "<string>",
"agent_name": "<string>",
"version": "<string>",
"display_name": "<string>",
"commit_message": "<string>",
"published_at": "2023-11-07T05:31:56Z",
"published_by": "<string>"
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = PublishAgentDefinitionRequest(name="Example")
result = client.agents.publish("agent_id_value", body=body)
print(result){
"id": "<string>",
"agent_definition_urn": "<string>",
"agent_name": "<string>",
"version": "<string>",
"display_name": "<string>",
"commit_message": "<string>",
"published_at": "2023-11-07T05:31:56Z",
"published_by": "<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.
Bypass draft head validation and publish any version directly
Request model for publishing the current draft of an agent.
User-provided description of what changed in this version
Successful Response
Response model for a publish event.
Registry entry ID
Catalog URN of the published AgentDefinition version
Agent name
Published version slug
Display name of the published version
User-provided description of what changed in this version
Timestamp of the publish event
User who published
Was this page helpful?