zzz

Results 4 comments of zzz

I encountered the same problem as you,when i want to run scienceagentbench inference, i use ./evaluation/benchmarks/scienceagentbench/scripts/run_infer.sh as the README.md mentioned. but there is an error : `subprocess.CalledProcessError: Command '[ 'docker',...

May I ask if there is a solution to this issue? I still have this problem with the latest version of Verl

> > May I ask if there is a solution to this issue? I still have this problem with the latest version of Verl > > Does this help? `export...

我已经解决了这个问题,只需要判断usage是否不为none即可,但是打印出来的usage均为none有些奇怪,修改后的代码如下 ```python if finish_reason: if hasattr(chunk, "usage") and chunk.usage: # Some services have usage as an attribute of the chunk, such as Fireworks usage = CompletionUsage(**chunk.usage) elif hasattr(chunk.choices[0], "usage") and...