Spaces:
Paused
Paused
Update crew.py
Browse files
crew.py
CHANGED
|
@@ -11,7 +11,7 @@ from crewai_tools import (
|
|
| 11 |
from openai import OpenAI
|
| 12 |
from openinference.instrumentation.crewai import CrewAIInstrumentor
|
| 13 |
from phoenix.otel import register
|
| 14 |
-
from tools import
|
| 15 |
from util import get_final_answer
|
| 16 |
|
| 17 |
MANAGER_MODEL = "gpt-4.1"
|
|
@@ -35,7 +35,7 @@ CrewAIInstrumentor().instrument(tracer_provider=tracer_provider)
|
|
| 35 |
def run_crew(question, file_path):
|
| 36 |
# Custom tools
|
| 37 |
|
| 38 |
-
audio_analysis_tool =
|
| 39 |
|
| 40 |
# Built-in tools
|
| 41 |
|
|
|
|
| 11 |
from openai import OpenAI
|
| 12 |
from openinference.instrumentation.crewai import CrewAIInstrumentor
|
| 13 |
from phoenix.otel import register
|
| 14 |
+
from tools import audio_analysis_tool
|
| 15 |
from util import get_final_answer
|
| 16 |
|
| 17 |
MANAGER_MODEL = "gpt-4.1"
|
|
|
|
| 35 |
def run_crew(question, file_path):
|
| 36 |
# Custom tools
|
| 37 |
|
| 38 |
+
audio_analysis_tool = audio_analysis_tool()
|
| 39 |
|
| 40 |
# Built-in tools
|
| 41 |
|