Merge branch 'main' into main

This commit is contained in:
fzowl
2025-01-13 17:50:50 +01:00
committed by GitHub
19 changed files with 1025 additions and 4019 deletions

View File

@@ -73,9 +73,9 @@ result = crew.kickoff()
If you're using the hierarchical process and don't want to set a custom manager agent, you can specify the language model for the manager:
```python Code
from langchain_openai import ChatOpenAI
from crewai import LLM
manager_llm = ChatOpenAI(model_name="gpt-4")
manager_llm = LLM(model="gpt-4o")
crew = Crew(
agents=[researcher, writer],