Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
|
@@ -9,13 +9,13 @@ import pandas as pd
|
|
| 9 |
|
| 10 |
from src.agent import Agent
|
| 11 |
from src.tools import (
|
| 12 |
-
multiply, add, subtract, divide, modulus, wiki_search
|
| 13 |
)
|
| 14 |
from src.utils import download_file
|
| 15 |
|
| 16 |
|
| 17 |
tools = [
|
| 18 |
-
multiply, add, subtract, divide, modulus, wiki_search
|
| 19 |
]
|
| 20 |
tools.append(
|
| 21 |
TavilySearch(
|
|
@@ -23,6 +23,7 @@ tools.append(
|
|
| 23 |
)
|
| 24 |
)
|
| 25 |
|
|
|
|
| 26 |
Langfuse(
|
| 27 |
public_key=os.environ.get("LANGFUSE_PUBLIC_KEY"),
|
| 28 |
secret_key=os.environ.get("LANGFUSE_SECRET_KEY"),
|
|
|
|
| 9 |
|
| 10 |
from src.agent import Agent
|
| 11 |
from src.tools import (
|
| 12 |
+
multiply, add, subtract, divide, modulus, wiki_search, audio_transcript
|
| 13 |
)
|
| 14 |
from src.utils import download_file
|
| 15 |
|
| 16 |
|
| 17 |
tools = [
|
| 18 |
+
multiply, add, subtract, divide, modulus, wiki_search, audio_transcript
|
| 19 |
]
|
| 20 |
tools.append(
|
| 21 |
TavilySearch(
|
|
|
|
| 23 |
)
|
| 24 |
)
|
| 25 |
|
| 26 |
+
|
| 27 |
Langfuse(
|
| 28 |
public_key=os.environ.get("LANGFUSE_PUBLIC_KEY"),
|
| 29 |
secret_key=os.environ.get("LANGFUSE_SECRET_KEY"),
|