abdulllah01 commited on
Commit
08ff18c
1 Parent(s): 13f0f90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
3
 
4
  # Load the model and tokenizer from your Hugging Face Hub repository
5
- model_name = "abdulllah01/tech-support-bot" # Replace with your Hugging Face repo name
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForCausalLM.from_pretrained(model_name)
8
 
 
2
  from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
3
 
4
  # Load the model and tokenizer from your Hugging Face Hub repository
5
+ model_name = "abdulllah01/outputs" # Replace with your Hugging Face repo name
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForCausalLM.from_pretrained(model_name)
8