The Meibel AI CLI provides command-line access to all API features, perfect for scripting and automation.
The CLI tool is currently in development. This page will be updated when it becomes available.
Planned Features
Installation
# Via pip
pip install meibel-cli
# Via homebrew (macOS)
brew install meibel-ai/tap/meibel
# Via snap (Linux)
snap install meibel-cli
Authentication
# Configure API key
meibel auth login --api-key YOUR_API_KEY
# Or use environment variable
export MEIBEL_API_KEY=YOUR_API_KEY
Basic Commands
# List datasources
meibel datasources list
# Create a datasource
meibel datasources create --name "My Data" --description "Test data"
# Chat with RAG
meibel chat "What is the weather like?"
# Stream responses
meibel chat "Explain quantum computing" --stream
Advanced Usage
- Batch operations
- JSON output for scripting
- Interactive mode
- Configuration profiles
- Plugin system
Use Cases
- Automation: Script repetitive tasks
- Testing: Integrate with CI/CD pipelines
- Development: Quick API testing
- Operations: Manage resources
Current Alternatives
While the CLI is in development:
- Use the Python SDK in scripts
- Use
curl with the REST API
- Create custom scripts with our SDKs
Next Steps