Spaces:
Configuration error
Configuration error
Update crew.py
Browse files
crew.py
CHANGED
|
@@ -7,10 +7,12 @@ import os
|
|
| 7 |
import pandas as pd
|
| 8 |
from crewai import Agent, Crew, Process, Task
|
| 9 |
from crewai.tools import tool
|
|
|
|
| 10 |
from google import genai
|
| 11 |
from google.genai import types
|
| 12 |
from openinference.instrumentation.crewai import CrewAIInstrumentor
|
| 13 |
from phoenix.otel import register
|
|
|
|
| 14 |
from tools import add, subtract, multiply, divide, modulus
|
| 15 |
from utils import read_file_json, read_docx_text, read_pptx_text, is_ext
|
| 16 |
|
|
|
|
| 7 |
import pandas as pd
|
| 8 |
from crewai import Agent, Crew, Process, Task
|
| 9 |
from crewai.tools import tool
|
| 10 |
+
from crewai_tools import StagehandTool
|
| 11 |
from google import genai
|
| 12 |
from google.genai import types
|
| 13 |
from openinference.instrumentation.crewai import CrewAIInstrumentor
|
| 14 |
from phoenix.otel import register
|
| 15 |
+
from stagehand.schemas import AvailableModel
|
| 16 |
from tools import add, subtract, multiply, divide, modulus
|
| 17 |
from utils import read_file_json, read_docx_text, read_pptx_text, is_ext
|
| 18 |
|