Spaces:
Runtime error
Runtime error
update
Browse files
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."""
|