Zack Saadioui
4/25/2025
1
curl -fsSL https://ollama.com/install.sh | sh
1
ollama run llama3
1
API_URL
1
MODEL
1
Mistral 7B
1
Gemma
1
Phi 4
1
credentials.json
1 2 3 4 5 6 7 8 9
# Load token if exists, else go through auth flow if os.path.exists('token.json'): creds = Credentials.from_authorized_user_file('token.json') if not creds or not creds.valid: flow = InstalledAppFlow.from_client_secrets_file('credentials.json', ['https://www.googleapis.com/auth/gmail.readonly']) creds = flow.run_local_server() with open('token.json', 'w') as token: token.write(creds.to_json()) return build('gmail', 'v1', credentials=creds)
1
automate_commands.sh
1
2
bash
gchmod +x automate_commands.sh
Copyright © Arsturn 2025