Ollama

Ollama is a free, open-source framework used to run Large Language Models (LLMs) directly on your own computer

 

How to Install 

https://ollama.com

https://ollama.com/download

https://docs.ollama.com/integrations

 

ollama serve

Error: listen tcp 127.0.0.1:11434: bind: address already in use

To start with lets use  Gemini model Use 270Million parameters

https://ollama.com/search?q=gemma3

 ollama --help        
Large language model runner

Usage:
  ollama [flags]
  ollama [command]

Available Commands:
  serve        Start Ollama
  create       Create a model
  show         Show information for a model
  run          Run a model
  agent        Run an agent
  stop         Stop a running model
  pull         Pull a model from a registry
  push         Push a model to a registry
  signin       Sign in to ollama.com
  signout      Sign out from ollama.com
  list         List models
  ps           List running models
  cp           Copy a model
  rm           Remove a model
  launch       Launch the Ollama menu or an integration
  help         Help about any command

Flags:
  -h, --help         help for ollama
      --nowordwrap   Don't wrap words to the next line automatically
      --verbose      Show timings for response
  -v, --version      Show version information

Use "ollama [command] --help" for more information about a command.

ollama run gemma3:270m

pulling manifest

success

>>> hi

Hi there! How can I help you today?

Adding few more model to my local

https://ollama.com/library/phi3


ollama run phi3

https://ollama.com/search?q=gpt-oss

ollama run gpt-oss

>>> what's the temperature in fremont califonia looks like today and next 3 days
Thinking...
User wants weather forecast for Fremont, California: current temp, tomorrow, day after, third day. Need to browse. Use browser search. Let's do that.
...done thinking.
Model called a non-existent function 'browser.search()' with arguments: {"query":"weather Fremont California current temperature","topn":5,"source":"news"}
>>>
...
Thinking...
The user wants current weather for Fremont, CA. We don't have real-time data. According to policy, we must not fabricate or give unverified info. The best approach: provide guidance on how to find it, or use a placeholder but clarify that it's not
real-time. Possibly show the process to get forecast via API, etc. But user explicitly asks for current temperature and next 3 days.
We should respond with "I'm sorry I don't have real-time data" and suggest checking reliable sources like NOAA, Weather.com, AccuWeather, or a weather app. We can also mention typical climate but not give actual numbers.
Thus produce answer in friendly tone, comply with policy: no speculation.
...done thinking.
I’m sorry, but I don’t have access to live data so I can’t give you the current temperature for Fremont, CA or an up‑to‑date 3‑day forecast.
Here’s how you can check it right now:
| Source | How to use |
|--------|------------|
| **Weather.com** (The Weather Channel) | Go to [weather.com](https://www.weather.com/), type “Fremont, CA” into the search bar, and view the current conditions plus a 5‑day outlook. |
| **AccuWeather** | Visit [accuweather.com](https://www.accuweather.com/) and search for “Fremont, California.” The site will show a real‑time temperature, hourly forecast, and next‑days summary. |
| **National Weather Service (NOAA)** | Open the NOAA Weather Forecast Office for the West Coast (e.g., [weather.gov](https://www.weather.gov/)). Search “Fremont” or use
the map to find local station data. |
| **Smartphone weather apps** | Most phones come with a built‑in weather widget. Add Fremont, CA as a location and you’ll see current temperature, precipitation chance, wind, etc. |
| **Google Search** | Simply type “Fremont CA weather” in Google, and the quick info box at the top will display the present temperature, humidity, wind, and a 5‑day forecast. |
If you’re looking for something more detailed (e.g., historical data or climate averages), NOAA’s Climate Data Online (CDO) portal is very useful:
`https://www.ncdc.noaa.gov/cdo-web/`
 ollama list
NAME              ID              SIZE      MODIFIED           
gpt-oss:latest    17052f91a42e    13 GB     About a minute ago    
phi3:latest       4f2222927938    2.2 GB    13 minutes ago        
gemma3:270m       e7d36fb2c3b3    291 MB    32 minutes ago      

Leave a comment