Skip to content

Commit

Permalink
--fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Noenc committed Nov 29, 2024
1 parent fff3df5 commit d4cc4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chatBot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
st.set_page_config(page_title="🦙💬 Llama-cpp Chatbot")

# Llama-cpp Configuration
MODEL_PATH = "C:/Users/Nönk/Desktop/Praxis Project/remail/.llama/Llama-3.2-1B-Instruct-f16.gguf" # Update with your model file path
MODEL_PATH = "./.llama/Llama-3.2-1B-Instruct-f16.gguf" # Update with your model file path
llama = Llama(model_path=MODEL_PATH, n_ctx=512, n_batch=128)

def generate_llama_response(prompt_input):
Expand Down

0 comments on commit d4cc4b8

Please sign in to comment.