Update to use absolute imports (#17)

Update to use absolute imports
This commit is contained in:
Greyson LaLonde
2023-12-29 20:39:59 -05:00
committed by GitHub
parent d3ecd1d490
commit ed61f467b1
6 changed files with 14 additions and 13 deletions

View File

@@ -8,8 +8,8 @@ from langchain.tools.render import render_text_description
from langchain_core.runnables.config import RunnableConfig
from pydantic import BaseModel, Field, InstanceOf, model_validator
from .agents import CacheHandler, CrewAgentOutputParser, ToolsHandler
from .prompts import Prompts
from crewai.agents import CacheHandler, CrewAgentOutputParser, ToolsHandler
from crewai.prompts import Prompts
class Agent(BaseModel):