ashwinR commited on
Commit
a66dbe1
·
1 Parent(s): 1531310

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import gradio as gr
2
  from langchain import PromptTemplate, LLMChain
3
  from langchain.llms import GPT4All
4
 
5
- PATH = 'ggml-mpt-7b-instruct.bin'
6
 
7
  llm = GPT4All(model=PATH, verbose=True)
8
 
 
2
  from langchain import PromptTemplate, LLMChain
3
  from langchain.llms import GPT4All
4
 
5
+ PATH = './ggml-mpt-7b-instruct.bin'
6
 
7
  llm = GPT4All(model=PATH, verbose=True)
8