Hi, based on my observation and trials, the EvalCase session state data is not propagated. So if I have something like this:
eval_case = EvalCase(
eval_id = "something",
conversation = [
...
],
session_input = SessionInput(
app_name = "...",
user_id = "...",
state = {
"some_key": "some_value"
}
)
The agent under test does not get the state value in the session. What am I doing wrong? Thanks.