Mr.W
Mr.W
There was an announcement here: https://steemit.com/steemitdev/@steemitdev/update-your-steem-apps-big-changes-coming-for-3rd-party-developers I tried but didn't know how to solve this. Below code would work: ``` from steem import Steem steem = Steem(nodes=['https://api.steemit.com']) ``` Would piston-lib...
I think it's easy that you could add a service in Mac Automator and then call a shell script like: ``` #!/bin/bash # set -e # get full file path...
Have the same issue today while using ChatStream
Should be just like: ``` import openai # Replace 'your-api-key' with your actual OpenAI API key OPENAI_API_KEY = 'your-api-key' openai.api_key = OPENAI_API_KEY def ms_chatgpt(query): query_session = [{"role":"user", "content": query}] resp...