Roberto Balestri

Results 14 comments of Roberto Balestri

I made a little scraping script that fetch the first 50 quotes (not more cause it needs selenium to load more than 50 because now Imdb load them dinamically and...

anyway, just for info this is the lil script for scraping: def find_quotes(): ia = Cinemagoer() id = "11111" movie = ia.get_movie(id) url = ia.get_imdbURL(movie) # URL to be scraped...

I tried changing API version with "2024-02-15-preview" and I was able to resolve the problem. Try it. load_dotenv() azure_llm = AzureChatOpenAI( azure_endpoint= os.environ.get("AZURE_OPENAI_ENDPOINT"), api_key= os.environ.get("AZURE_OPENAI_KEY"), api_version= os.environ.get("API_VERSION"), deployment_name = os.environ.get("DEPLOYMENT_NAME"),...

> hi @robertobalestri what exactly isnt working? which part The fact is that the program when clicking on download correctly fetches the "not blurred" pages, but it doesn't correctly "transform"...

Facing the same issue: ``` def run_travel_planner(query: str, num_days: str) -> Dict[str, Any]: if not query or not num_days: logger.error("Invalid input: query and num_days must be non-empty strings.") return {"error":...

No, i'm talking about the web demo that is not updated

Hi serengil, Sorry for the confusion. Let me try to explain the issue more clearly. The Problem: The deepface library sometimes returns coordinate tuples for left_eye and right_eye within the...

![Image](https://github.com/user-attachments/assets/cad39a48-1585-40a3-ae11-0bb02eee85fd) For example, in this face extracted with RetinaFace from a video, I expect left_eye and right_eye to be None. ![Image](https://github.com/user-attachments/assets/3e07c075-e0e7-4e9a-8ceb-9229e1ba6215) As well as in this image.

facial_area = {'x': 1694, 'y': 0, 'w': 212, 'h': 258, 'left_eye': (1839, -81), 'right_eye': (1743, -79)} for ![Image](https://github.com/user-attachments/assets/0c1bbe0d-24b2-49d3-bbba-1cf1aec18077) -------------------- facial_area = {'x': 546, 'y': 61, 'w': 273, 'h': 440, 'left_eye':...