ai.lua 635 B

123456789101112131415
  1. local ok, gen = pcall(require, 'gen')
  2. if not ok then
  3. return
  4. end
  5. gen.prompts['DevOps me!'] = {
  6. prompt = "You are a senior devops engineer, acting as an assistant. You offer help with cloud technologies like: Terraform, AWS, kubernetes, python. You answer with code examples when possible. $input:\n$text",
  7. replace = true
  8. }
  9. gen.prompts['Code helper'] = {
  10. prompt = "You are a senior code engineer, acting as an assistant. You offer help with coding technologies like: Kotlin, Java, kubernetes, quarkus, spring, spring-boot. You answer with code examples when possible. $input:\n$text",
  11. replace = true,
  12. model = 'codellama'
  13. }