MCPcopy Create free account
hub / github.com/LMCache/LMBenchmark / UserConfig

Class UserConfig

agentic/agentic-qa.py:27–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25
26@dataclass
27class UserConfig:
28 user_id: int
29 num_agents: int
30 gap_between_requests: int
31 trace: Any
32
33 @staticmethod
34 def new_user_config(user_id: int, workload_config: WorkloadConfig, trace) -> "UserConfig":
35 return UserConfig(
36 user_id=user_id,
37 num_agents=workload_config.num_agents,
38 gap_between_requests=workload_config.user_request_interval,
39 trace=trace,
40 )
41
42
43class ChatHistory:

Callers 1

new_user_configMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected