-
Notifications
You must be signed in to change notification settings - Fork 5.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug]: LLM retries too fast #4238
Comments
@x66ccff Can you please clarify or give an example, what kind of command is being retried too fast? LLM_*retries variables apply to calls to the LLM, they don't apply to other retries that happen, like those of the runtime environment executing bash commands, etc. |
The LLM try to run
|
pysr_example.py: import numpy as np
X = 2 * np.random.randn(100, 5)
y = 2.5382 * np.cos(X[:, 3]) + X[:, 0] ** 2 - 0.5
from pysr import PySRRegressor
model = PySRRegressor(
niterations=5, # < Increase me for better results
binary_operators=['+', '*'],
unary_operators=[
'cos',
'exp',
'sin',
'inv(x) = 1/x',
# ^ Custom operator (julia syntax)
],
extra_sympy_mappings={'inv': lambda x: 1 / x},
# ^ Define operator for SymPy as well
elementwise_loss='loss(prediction, target) = (prediction - target)^2',
# ^ Custom loss function (julia syntax)
)
model.fit(X, y)
print(model) |
Sorry, I misunderstood the situation. This issue isn't necessary, so I'm closing it |
Is there an existing issue for the same bug?
Describe the bug
i'm using docker to start the openhands. In my task, some commands needs long time to execute. (with slow outputs) The agent may regard this as stucked, but in fact it is not.
the agents tries to retry it frequently. I use this command but these seems useless
the agent retries every 3 seconds, but i don know how to change this
Current OpenHands version
Installation and Configuration
Model and Agent
qwen2.5:72b
Operating System
linux
Reproduction Steps
No response
Logs, Errors, Screenshots, and Additional Context
No response
The text was updated successfully, but these errors were encountered: