CLI Quick Start
CLI Quick Start
Section titled “CLI Quick Start”Quick Install
Section titled “Quick Install”npm install -g @artemiskit/cliQuick Test
Section titled “Quick Test”# Set your API keyexport OPENAI_API_KEY="sk-..."
# Create a test scenariocat > hello-world.yaml << 'EOF'name: hello-worldprovider: openaimodel: gpt-4o
cases: - id: math-test prompt: "What is 2 + 2?" expected: type: contains values: ["4"]EOF
# Run the testakit run hello-world.yamlNext Steps
Section titled “Next Steps”- Getting Started Guide — Full walkthrough with SDK coverage
- Scenario Format — YAML schema reference
- Expectations — All evaluator types
- Commands — CLI options and flags
- CI/CD Integration — Pipeline setup