மனோஜ்குமார் பழனிச்சாமி

Results 524 comments of மனோஜ்குமார் பழனிச்சாமி

Could you check if the sandbox container is running in Docker Desktop and log in using `ssh -v -p 34161 opendevin@localhost` if so? Related SO Post: [pxssh error 'could not...

Could you please provide the logs?

> Hi i also experiencing same problem here. I also use WSL in windows 11 with network `mirror`, if i shutdown my wsl first, then i can run httptoolkit without...

Would you apply [this commit](https://github.com/SmartManoj/browser-use/commit/ca44e83edd73562d39cac0690843125b108317ef) and check if the issue is resolved?

https://github.com/browser-use/browser-use/blob/aefa4670d955cd100794f6b4d69bb637279e93db/browser_use/agent/message_manager/service.py#L174 Would you add a breakpoint here and print the msg?

```python from langchain_core.messages import ( AIMessage, BaseMessage, HumanMessage, SystemMessage, ToolMessage, ) msgs = [] print('Before Merging:\n') for k,i in enumerate(msgs): print(k,type(i).__name__) print('--------------------------------') for i in range(len(msgs) - 1, 0, -1):...

You need to pass the merged msgs. ```py from langchain_core.messages import ( AIMessage, BaseMessage, HumanMessage, SystemMessage, ToolMessage, ) def merge_msgs(msgs): print('Before Merging:\n') for k,i in enumerate(msgs): print(k,type(i).__name__) print('--------------------------------') for i...

```py from openai import OpenAI def send_messages(messages): response = client.chat.completions.create( model="deepseek-chat", messages=messages, tools=tools ) return response.choices[0].message client = OpenAI( api_key="", base_url="https://api.deepseek.com", ) tools = [ { "type": "function", "function": {...

> It run failed, No, it works. Does it still work if you add a system message?