jpuri commited on
Commit
f4a9154
·
1 Parent(s): 5bc88a6
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -7,6 +7,8 @@ from llama_index.core.agent.workflow import (
7
  from llama_index.llms.huggingface_api import HuggingFaceInferenceAPI
8
  import chromadb
9
  from llama_index.vector_stores.chroma import ChromaVectorStore
 
 
10
 
11
  def add(a: int, b: int) -> int:
12
  """Adds two numbers together and returns the result."""
 
7
  from llama_index.llms.huggingface_api import HuggingFaceInferenceAPI
8
  import chromadb
9
  from llama_index.vector_stores.chroma import ChromaVectorStore
10
+ from llama_index.embeddings.huggingface import HuggingFaceEmbedding
11
+ from llama_index.core.tools import QueryEngineTool
12
 
13
  def add(a: int, b: int) -> int:
14
  """Adds two numbers together and returns the result."""