This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am the Miaou user with id 7808 and name "t1c" on https://miaou.dystroy.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Intel ACPI Component Architecture | |
* AML/ASL+ Disassembler version 20230628 (64-bit version) | |
* Copyright (c) 2000 - 2023 Intel Corporation | |
* | |
* Disassembling to symbolic ASL+ operators | |
* | |
* Disassembly of dsdt.dat | |
* | |
* Original Table Header: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
for gguf_file in ./*.gguf; do | |
base_name=$(basename "$gguf_file" .gguf) | |
echo "Making modelfile for $base_name" | |
model_file="./Modelfile_$base_name" | |
echo "FROM ./$gguf_file" > "$model_file" | |
ollama create "$base_name" -f "$model_file" | |
rm "$gguf_file" | |
rm "$model_file" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import disnake | |
from disnake.ext import commands | |
bot = commands.Bot( | |
command_prefix=commands.when_mentioned_or("!!"), | |
description="Bot for Ukraine War Reports", | |
intents=disnake.Intents.default(), | |
chunk_guilds_at_startup=True) | |
@bot.event |