Michelangelo27 / chatgpt_selenium_automation

MIT License
85 stars 31 forks source link

Can ARM64 use it? #15

Open CubatLin opened 3 weeks ago

CubatLin commented 3 weeks ago

My code is as below, but it seems not work, please help thanks

from chatgpt_selenium_automation.handler import ChatGPTAutomation

# Define the path where the chrome driver is installed on your computer
chrome_driver_path = r"/chromedriver/chromedriver"

# the sintax r'"..."' is required because the space in "Program Files" in the chrome path
chrome_path = r'"/Applications/Google Chrome.app"'

# xattr -d com.apple.quarantine /Users/ethanwu/Documents/GitHub/llm_project/kgis_openai/chromedriver/chromedriver

# Create an instance
chatgpt = ChatGPTAutomation(chrome_path, chrome_driver_path)

# Define a prompt and send it to chatgpt
prompt = "What are the benefits of exercise?"
chatgpt.send_prompt_to_chatgpt(prompt)

# Retrieve the last response from ChatGPT
response = chatgpt.return_last_response()
print(response)

# Save the conversation to a text file
file_name = "conversation.txt"
chatgpt.save_conversation(file_name)

# Close the browser and terminate the WebDriver session
chatgpt.quit()
jazeelius commented 1 week ago

I'm also having issues