Krzysztof Krystian Jankowski commited on
Commit
217d1cb
·
1 Parent(s): c09f0b6

tinyllama test

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -1,12 +1,9 @@
1
  import streamlit as st
2
  from langchain.prompts import PromptTemplate
3
  from langchain_community.llms import CTransformers
4
- from transformers import AutoModel
5
 
6
- # load the model
7
- PretrainedModel = AutoModel.from_pretrained("TinyLlama/TinyLlama-1.1B-Chat-v1.0")
8
  def getLlamaResponse(input_text, no_words, blog_style):
9
- llm=CTransformers(model=PretrainedModel,
10
  model_type='llama',
11
  config={'max_new_tokens':256, 'temperature':0.2})
12
 
 
1
  import streamlit as st
2
  from langchain.prompts import PromptTemplate
3
  from langchain_community.llms import CTransformers
 
4
 
 
 
5
  def getLlamaResponse(input_text, no_words, blog_style):
6
+ llm=CTransformers(model="TheBloke/TinyLlama-1.1B-Chat-v0.3-GGUF",
7
  model_type='llama',
8
  config={'max_new_tokens':256, 'temperature':0.2})
9