Currently I want to have a mock LLM endpoint that I can call to test my API gateway, but running any of these doesn't seem to work (no output):
# LLM mocking only
npx aimock -p 4010 -f ./fixtures
# Full suite from config
npx aimock --config aimock.json
# Record mode: proxy to real APIs, save fixtures
npx aimock --record --provider-openai https://api.openai.com
# Convert fixtures from other tools
npx aimock convert vidaimock ./templates/ ./fixtures/
npx aimock convert mockllm ./config.yaml ./fixtures/
Is there any additional set up I need to do? Thanks!
Currently I want to have a mock LLM endpoint that I can call to test my API gateway, but running any of these doesn't seem to work (no output):
Is there any additional set up I need to do? Thanks!