skanda12 commited on
Commit
0bb1c87
·
verified ·
1 Parent(s): 34bd850

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -12,9 +12,8 @@ from langchain.embeddings import HuggingFaceEmbeddings
12
 
13
  os.environ["TOGETHER_API_KEY"] =os.getenv("TOGETHER_API_KEY")
14
 
15
-
16
  def inference(chain, input_query):
17
- """Invoke the processing chain with the input query."""
18
  result = chain.invoke(input_query)
19
  return result
20
 
 
12
 
13
  os.environ["TOGETHER_API_KEY"] =os.getenv("TOGETHER_API_KEY")
14
 
 
15
  def inference(chain, input_query):
16
+ """Invoke the processing chain with the input query"""
17
  result = chain.invoke(input_query)
18
  return result
19