You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, first of all, thank you for open-sourcing such an exciting project!
I noticed a bug after trying this repository on my laptop (M1 Pro Macbook) on a Python 3.11 conda environment, as instructed in README.md.
Current installation of SeeAct requires openai package of version 1.24.0, which results in following error (when running code in Usage in README):
File "/opt/miniconda3/envs/seeact/lib/python3.11/site-packages/openai/_base_client.py", line 825, in __init__
self._client = http_client or SyncHttpxClientWrapper(
^^^^^^^^^^^^^^^^^^^^^^^
File "/opt/miniconda3/envs/seeact/lib/python3.11/site-packages/openai/_base_client.py", line 723, in __init__
super().__init__(**kwargs)
TypeError: Client.__init__() got an unexpected keyword argument 'proxies'
This is because installing openai package installs up-to-date httpx package, which currently do not have proxies argument in their httpx.Client object.
To solve this issue, I suggest to add version requirement of httpx package of version 0.27.0, which was the up-to-date version of httpx package when openai==1.24.0 was released.
Thank you very much for your great work!
The text was updated successfully, but these errors were encountered:
Thanks for your interest in our work and your help to improve our codebase! @jaemin-shin We will sure include the updated httpx in the next version! Thanks again for your suggestion!
Hi, first of all, thank you for open-sourcing such an exciting project!
I noticed a bug after trying this repository on my laptop (M1 Pro Macbook) on a Python 3.11 conda environment, as instructed in README.md.
Current installation of SeeAct requires
openai
package of version1.24.0
, which results in following error (when running code inUsage
in README):This is because installing openai package installs up-to-date
httpx
package, which currently do not haveproxies
argument in theirhttpx.Client
object.To solve this issue, I suggest to add version requirement of
httpx
package of version0.27.0
, which was the up-to-date version ofhttpx
package whenopenai==1.24.0
was released.Thank you very much for your great work!
The text was updated successfully, but these errors were encountered: