Skip to main content

Posts

Showing posts with the label genai

Google 1/O 2025 summary

  Google just dropped their  biggest Al updates ever during Google 1/O 2025.  Here are 13 new Al updates you can't miss: Gemini Live. You can now turn on your camera, point at anything, and talk to Gemini about it in real time Imagen. Google's best image model yet Veo 3. The first video model with native sound generation Deep Research Project Astra. A JARVIS-like research prototype exploring the capabilities of a universal Al assistant Google Flow. Al filmmaking tool for creators Agent Mode. A new feature in the Gemini app that lets you state a goal, and Gemini will handle the steps to achieve it Google Jules. Jules is an Al-powered coding assistant that can read your code, write tests, fix bugs, and update dependencies Al Mode in Search. Al Mode transforms Google Search into a conversational assistant Real-time speech translation in Google Meet Google Beam. An Al-first video communication platform that turns 2D video stream...

How to deply Ollama & open web-ui on your laptop

How to deploy Ollama  Installation: Download Ollama:   Get the Ollama package from the  GitHub repository .   Install Dependencies:   Ensure you have any required dependencies, including libraries for your specific model.   Verify Installation:   Use  ollama --version  to confirm Ollama is installed correctly.   2. Model Deployment and Usage: Pull the Model:   Use the  ollama pull <model_name>  command to download the desired model.   Run the Model:   Use  ollama run <model_name>  to initiate the model's execution.   Interacting with the Model:   Ollama provides an API at  http://localhost:11434/api/generate  for interacting with the model.   Optional: Web UI:   Explore  Open WebUI  for a user-friendly interface to manage and interact with models.   Optional: Custom Applications:   Build custom applications using libraries like FastAPI and Gr...