Skip to content

refactor: move the prompts package to code_suggestions

Alexander Chueshev requested to merge ac/move-prompts-code-suggestions into main

What does this merge request do and why?

This MR moves the prompts package to the code_suggestions package. The prompts package is strongly associated with Code Suggestions. By moving this package, we clean up the root folder.

Please note that we also delete the prompts.snippets package that we created once and don't use now.

How to set up and validate locally

  1. Check out to this merge request's branch.
  2. Ensure a local Docker image built successfully.
    docker build --platform linux/amd64 -t ai-gateway:dev .
  3. Run a local service on Docker.
    docker run --platform linux/amd64 --rm \
      -p 5052:5052 \
      -e AIGW_AUTH__BYPASS_EXTERNAL=true \
      -v $PWD:/app -it ai-gateway:dev

Merge request checklist

  • Tests added for new functionality. If not, please raise an issue to follow up.
  • Documentation added/updated, if needed.

Merge request reports