Como adicionar legenda ao geom_smooth no ggplot em R

Tem um problema de adicionar legenda para suavizar diferentes no ggplot.

    library(splines)
    library(ggplot2)
    temp <- data.frame(x = rnorm(200, 20, 15), y = rnorm(200, 30, 8))

    ggplot(data = temp, aes(x, y)) + geom_point() + 
      geom_smooth(method = 'lm', formula = y ~ bs(x, df=5, intercept = T), col='blue') + 
      geom_smooth(method = 'lm', formula = y ~ ns(x, df=2, intercept = T), col='red')

Eu tenho dois splines: vermelho e azul. Como posso adicionar uma legenda para eles?

questionAnswers(1)

yourAnswerToTheQuestion