You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@Configuration
public class MyPromptProviderConfiguration {
@Bean
public PromptProvider myPromptProvider() {
return () -> new AttributedString("myprompt:>", AttributedStyle.DEFAULT.foreground(AttributedStyle.YELLOW));
}
}
does not apply custom prompt provider. It always uses default one.