Suman Michael
Suman Michael
> ollama is now OpenAI-compatible as well: https://ollama.ai/blog/openai-compatibility This is how, it's working for me I couldn't add my custom model to the "default_open_ai_model" setting, For now, Zed is allowing...
Replace the lines from 57 with this code ``` self.msg_left_url='http://www.way2sms.com/sent-sms?Token='+self.jsid self.q=self.session.get(self.msg_left_url) self.soup=BeautifulSoup(self.q.text,'html.parser') self.t=self.soup.find_all("a",{"class":"active"})[1] # second "a" element with class "active" and sliced if(self.t.get_text()[-2:-1].isdecimal()): self.sent=int(self.t.get_text()[-2:-1]) else: self.sent=0 return(self.sent) ``` This may...