user method

LLMBuilder user(
  1. String userId
)

Sets user identifier for tracking and analytics

Implementation

LLMBuilder user(String userId) {
  _config = _config.copyWith(user: userId);
  return this;
}