Skip to content

Commit

Permalink
Fixing the right model
Browse files Browse the repository at this point in the history
  • Loading branch information
balajialg committed Jun 28, 2024
1 parent a6008bb commit da7ee6f
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions deployments/dev/images/default/postBuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Change to a directory where you want to download and install TinyLLAMA
cd /opt

# Clone the ollama repository (replace with actual repository URL)
git clone https://github.com/ollama/ollama.git

# Change into the ollama directory
cd ollama

# Install necessary dependencies
pip install -r requirements.txt

# Install TinyLLAMA model (adjust as per actual model installation instructions)
./ollama-linux-amd64 run phi3:mini
./ollama-linux-amd64 run tinyllama

0 comments on commit da7ee6f

Please sign in to comment.