diff --git a/setup/LLama2Modelfile b/setup/LLama2Modelfile new file mode 100644 index 0000000..1403cbd --- /dev/null +++ b/setup/LLama2Modelfile @@ -0,0 +1,13 @@ +FROM llama2 + +# Set parementers + +PARAMETER temperature 0.3 +PARAMETER stop Result + +# Sets a custom system message to specify the behavior of +# the chat assistant + +# Leaving it blank for now. + +SYSTEM """You are an expert is the required domain""" \ No newline at end of file diff --git a/setup/LLama_crewai_model.sh b/setup/LLama_crewai_model.sh new file mode 100755 index 0000000..e69de29 diff --git a/setup/MistralModelfile b/setup/MistralModelfile new file mode 100644 index 0000000..84281a5 --- /dev/null +++ b/setup/MistralModelfile @@ -0,0 +1,13 @@ +FROM mistral + +# Set parementers + +PARAMETER temperature 0.3 +PARAMETER stop Result + +# Sets a custom system message to specify the behavior of +# the chat assistant + +# Leaving it blank for now. + +SYSTEM """You are an expert is the required domain""" \ No newline at end of file diff --git a/setup/Mistral_crewai_model.sh b/setup/Mistral_crewai_model.sh new file mode 100755 index 0000000..f5d5f84 --- /dev/null +++ b/setup/Mistral_crewai_model.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +# Variables +model_name="mistral" +custom_model_name="crewai-mistral" + +# Get the base model +ollama pull $model_name + +# Create the model file +ollama create $custom_model_name -f ./MistralModelfile \ No newline at end of file