from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = CreateAgentPromptRequest(name="Example")
result = client.prompts.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 = CreateAgentPromptRequest(name="Example")
result = client.prompts.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.
Was this page helpful?