"vscode:/vscode.git/clone" did not exist on "3ae1b257fa24d56a832187ebcbbe2586cdd27c57"
  1. 13 Aug, 2024 8 commits
  2. 12 Aug, 2024 9 commits
  3. 11 Aug, 2024 3 commits
  4. 10 Aug, 2024 2 commits
  5. 09 Aug, 2024 7 commits
  6. 08 Aug, 2024 5 commits
  7. 07 Aug, 2024 6 commits
    • Jesse Gross's avatar
      image: Clarify argument to WriteManifest is config · 97ec8cfd
      Jesse Gross authored
      When creating a model the config layer is appended to the list of
      layers and then the last layer is used as the config when writing the
      manifest. This change directly uses the config layer to write the
      manifest. There is no behavior change but it is less error prone.
      97ec8cfd
    • royjhan's avatar
      add metrics to docs (#6079) · 5b3a21b5
      royjhan authored
      5b3a21b5
    • Kyle Kelley's avatar
      Use llama3.1 in tools example (#5985) · ad0c19dd
      Kyle Kelley authored
      * Use llama3.1 in tools example
      
      * Update api.md
      ad0c19dd
    • Jesse Gross's avatar
      Merge pull request #6145 from ollama/jessegross/bug5840 · 69eb06c4
      Jesse Gross authored
      Fix crash on startup when trying to clean up unused files (#5840)
      69eb06c4
    • Jesse Gross's avatar
      manifest: Fix crash on startup when trying to clean up unused files (#5840) · 1829fb61
      Jesse Gross authored
      Currently if the config field is missing in the manifest file (or
      corrupted), Ollama will crash when it tries to read it. This can
      happen at startup or when pulling new models.
      
      This data is mostly just used for showing model information so we
      can be tolerant of it not being present - it is not required to
      run the models. Besides avoiding crashing, this also gives us the
      ability to restructure the config in the future by pulling it
      into the main manifest file.
      1829fb61
    • Nicholas Schwab's avatar
      Set *.png and *.ico to be treated as binary files. · ce677060
      Nicholas Schwab authored
      The change b732beba makes all files text files and sets lf as eol. This
      will automatically change all files to have lf if they are touched by
      git (e.g. via git status). This change cannot be stashed and makes it
      hard to work with the repo (rebase and checkout don't really work). See
      also #6183.
      
      Here, we set the offending files (*.png and *.ico, but that might be
      more in the future) to be treated as binary files and not be changed by
      git.
      ce677060