Files
Quentin BEY 22ce90488c (e2e) add first chat end-to-end test
This is a very simple test, but it paves the way for more of them.
2025-11-14 15:09:54 +01:00
..
2025-11-14 15:09:54 +01:00
2025-11-14 15:09:54 +01:00

OpenMockLLM is a FastAPI-based mock LLM API server that simulates several Large Language Model API providers.

This is a simple docker image to run the server for testing and development purposes (E2E tests mainly).

It's a bit overkill to have a dedicated image for that, but it allows simple E2E stack with docker-compose since our code is also run in Docker containers.

Build and Run manually

docker build -t openmockllm .
docker run -p 8000:8000 openmockllm

Next steps

  • Add more chat completion behaviors (specific text streaming, function calling, etc.)
  • Pin a specific OpenMockLLM version in the Dockerfile