Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/edge/ar/concepts/knowledge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ agent = Agent(
role="Researcher",
goal="Research topics",
backstory="Expert researcher",
llm=LLM(provider="anthropic", model="claude-3-sonnet") # Using Claude
llm=LLM(provider="anthropic", model="claude-sonnet-4-6") # Using Claude
)

# CrewAI will still use OpenAI embeddings by default for knowledge
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/ar/concepts/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ memory = Memory()
memory = Memory(llm="gpt-4o")

# Use Anthropic
memory = Memory(llm="anthropic/claude-3-haiku-20240307")
memory = Memory(llm="anthropic/claude-haiku-4-5")

# Use Ollama for fully local/private analysis
memory = Memory(llm="ollama/llama3.2")
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/ar/guides/agents/crafting-effective-agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ writer:
role: "Creative Content Writer"
goal: "..."
backstory: "..."
llm: anthropic/claude-3-opus
llm: anthropic/claude-opus-4-6
```

## اختبار تصميم الـ Agent والتكرار عليه
Expand Down
12 changes: 6 additions & 6 deletions docs/edge/ar/learn/llm-selection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ from crewai import Agent, Task, Crew, LLM
manager_llm = LLM(model="gemini/gemini-3.7-flash", temperature=0.1)

# Creative model for content generation
content_llm = LLM(model="claude-3-5-sonnet-20241022", temperature=0.7)
content_llm = LLM(model="claude-sonnet-4-6", temperature=0.7)

# Efficient model for data processing
processing_llm = LLM(model="gpt-4o-mini", temperature=0)
Expand Down Expand Up @@ -320,7 +320,7 @@ domain_expert = Agent(
You've worked with companies like Salesforce, HubSpot, and emerging unicorns, giving
you perspective on both established and disruptive go-to-market strategies.
""",
llm=LLM(model="claude-3-5-sonnet", temperature=0.3) # Balanced creativity with domain knowledge
llm=LLM(model="claude-sonnet-4-6", temperature=0.3) # Balanced creativity with domain knowledge
)

# This context enables Claude to perform like a domain expert
Expand Down Expand Up @@ -352,7 +352,7 @@ tech_writer = Agent(
and practical use cases. You prioritize accuracy and usability over marketing fluff.
""",
llm=LLM(
model="claude-3-5-sonnet", # Excellent for technical writing
model="claude-sonnet-4-6", # Excellent for technical writing
temperature=0.1 # Low temperature for accuracy
),
tools=[code_analyzer_tool, api_scanner_tool],
Expand Down Expand Up @@ -416,7 +416,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
# Creative or customer-facing agents
content_agent = Agent(
role="Content Creator",
llm=LLM(model="claude-3-5-sonnet"), # Best for writing
llm=LLM(model="claude-sonnet-4-6"), # Best for writing
# ... rest of config
)
```
Expand Down Expand Up @@ -511,7 +511,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
)

# Agents inherit crew LLM unless specifically overridden
agent1 = Agent(llm=LLM(model="claude-3-5-sonnet")) # Override for specific needs
agent1 = Agent(llm=LLM(model="claude-sonnet-4-6")) # Override for specific needs
```

</Accordion>
Expand All @@ -529,7 +529,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
tools=[search_tool, api_tool, data_tool],
llm=LLM(model="gpt-4o"), # Excellent function calling
# OR
llm=LLM(model="claude-3-5-sonnet") # Also strong with tools
llm=LLM(model="claude-sonnet-4-6") # Also strong with tools
)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/edge/en/concepts/knowledge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ agent = Agent(
role="Researcher",
goal="Research topics",
backstory="Expert researcher",
llm=LLM(provider="anthropic", model="claude-3-sonnet") # Using Claude
llm=LLM(provider="anthropic", model="claude-sonnet-4-6") # Using Claude
)

# CrewAI will still use OpenAI embeddings by default for knowledge
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/en/concepts/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ memory = Memory()
memory = Memory(llm="gpt-4o")

# Use Anthropic
memory = Memory(llm="anthropic/claude-3-haiku-20240307")
memory = Memory(llm="anthropic/claude-haiku-4-5")

# Use Ollama for fully local/private analysis
memory = Memory(llm="ollama/llama3.2")
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/en/guides/agents/crafting-effective-agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ writer:
role: "Creative Content Writer"
goal: "..."
backstory: "..."
llm: anthropic/claude-3-opus
llm: anthropic/claude-opus-4-6
```

## Testing and Iterating on Agent Design
Expand Down
12 changes: 6 additions & 6 deletions docs/edge/en/learn/llm-selection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ from crewai import Agent, Task, Crew, LLM
manager_llm = LLM(model="gemini/gemini-3.7-flash", temperature=0.1)

# Creative model for content generation
content_llm = LLM(model="claude-3-5-sonnet-20241022", temperature=0.7)
content_llm = LLM(model="claude-sonnet-4-6", temperature=0.7)

# Efficient model for data processing
processing_llm = LLM(model="gpt-4o-mini", temperature=0)
Expand Down Expand Up @@ -323,7 +323,7 @@ domain_expert = Agent(
You've worked with companies like Salesforce, HubSpot, and emerging unicorns, giving
you perspective on both established and disruptive go-to-market strategies.
""",
llm=LLM(model="claude-3-5-sonnet", temperature=0.3) # Balanced creativity with domain knowledge
llm=LLM(model="claude-sonnet-4-6", temperature=0.3) # Balanced creativity with domain knowledge
)

# This context enables Claude to perform like a domain expert
Expand Down Expand Up @@ -355,7 +355,7 @@ tech_writer = Agent(
and practical use cases. You prioritize accuracy and usability over marketing fluff.
""",
llm=LLM(
model="claude-3-5-sonnet", # Excellent for technical writing
model="claude-sonnet-4-6", # Excellent for technical writing
temperature=0.1 # Low temperature for accuracy
),
tools=[code_analyzer_tool, api_scanner_tool],
Expand Down Expand Up @@ -419,7 +419,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
# Creative or customer-facing agents
content_agent = Agent(
role="Content Creator",
llm=LLM(model="claude-3-5-sonnet"), # Best for writing
llm=LLM(model="claude-sonnet-4-6"), # Best for writing
# ... rest of config
)
```
Expand Down Expand Up @@ -514,7 +514,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
)

# Agents inherit crew LLM unless specifically overridden
agent1 = Agent(llm=LLM(model="claude-3-5-sonnet")) # Override for specific needs
agent1 = Agent(llm=LLM(model="claude-sonnet-4-6")) # Override for specific needs
```

</Accordion>
Expand All @@ -532,7 +532,7 @@ Rather than repeating the strategic framework, here's a tactical checklist for i
tools=[search_tool, api_tool, data_tool],
llm=LLM(model="gpt-4o"), # Excellent function calling
# OR
llm=LLM(model="claude-3-5-sonnet") # Also strong with tools
llm=LLM(model="claude-sonnet-4-6") # Also strong with tools
)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/edge/ko/concepts/knowledge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ agent = Agent(
role="Researcher",
goal="Research topics",
backstory="Expert researcher",
llm=LLM(provider="anthropic", model="claude-3-sonnet") # Using Claude
llm=LLM(provider="anthropic", model="claude-sonnet-4-6") # Using Claude
)

# CrewAI will still use OpenAI embeddings by default for knowledge
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/ko/concepts/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ memory = Memory()
memory = Memory(llm="gpt-4o")

# Anthropic 사용
memory = Memory(llm="anthropic/claude-3-haiku-20240307")
memory = Memory(llm="anthropic/claude-haiku-4-5")

# 완전한 로컬/비공개 분석을 위해 Ollama 사용
memory = Memory(llm="ollama/llama3.2")
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/ko/guides/agents/crafting-effective-agents.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ writer:
role: "Creative Content Writer"
goal: "..."
backstory: "..."
llm: anthropic/claude-3-opus
llm: anthropic/claude-opus-4-6
```

## 에이전트 설계 테스트 및 반복
Expand Down
12 changes: 6 additions & 6 deletions docs/edge/ko/learn/llm-selection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ from crewai import Agent, Task, Crew, LLM
manager_llm = LLM(model="gemini/gemini-3.7-flash", temperature=0.1)

# Creative model for content generation
content_llm = LLM(model="claude-3-5-sonnet-20241022", temperature=0.7)
content_llm = LLM(model="claude-sonnet-4-6", temperature=0.7)

# Efficient model for data processing
processing_llm = LLM(model="gpt-4o-mini", temperature=0)
Expand Down Expand Up @@ -322,7 +322,7 @@ domain_expert = Agent(
You've worked with companies like Salesforce, HubSpot, and emerging unicorns, giving
you perspective on both established and disruptive go-to-market strategies.
""",
llm=LLM(model="claude-3-5-sonnet", temperature=0.3) # Balanced creativity with domain knowledge
llm=LLM(model="claude-sonnet-4-6", temperature=0.3) # Balanced creativity with domain knowledge
)

# This context enables Claude to perform like a domain expert
Expand Down Expand Up @@ -354,7 +354,7 @@ tech_writer = Agent(
and practical use cases. You prioritize accuracy and usability over marketing fluff.
""",
llm=LLM(
model="claude-3-5-sonnet", # Excellent for technical writing
model="claude-sonnet-4-6", # Excellent for technical writing
temperature=0.1 # Low temperature for accuracy
),
tools=[code_analyzer_tool, api_scanner_tool],
Expand Down Expand Up @@ -418,7 +418,7 @@ tech_writer = Agent(
# Creative 또는 고객 대응 agent
content_agent = Agent(
role="Content Creator",
llm=LLM(model="claude-3-5-sonnet"), # 글쓰기에 최적
llm=LLM(model="claude-sonnet-4-6"), # 글쓰기에 최적
# ... 나머지 설정
)
```
Expand Down Expand Up @@ -513,7 +513,7 @@ tech_writer = Agent(
)

# agent는 특별히 지정하지 않으면 crew LLM을 상속받음
agent1 = Agent(llm=LLM(model="claude-3-5-sonnet")) # 특정 요구에 따라 오버라이드
agent1 = Agent(llm=LLM(model="claude-sonnet-4-6")) # 특정 요구에 따라 오버라이드
```

</Accordion>
Expand All @@ -531,7 +531,7 @@ tech_writer = Agent(
tools=[search_tool, api_tool, data_tool],
llm=LLM(model="gpt-4o"), # 함수 호출에 우수
# OR
llm=LLM(model="claude-3-5-sonnet") # 도구 사용에 강점
llm=LLM(model="claude-sonnet-4-6") # 도구 사용에 강점
)
```

Expand Down
2 changes: 1 addition & 1 deletion docs/edge/pt-BR/concepts/knowledge.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ agent = Agent(
role="Researcher",
goal="Research topics",
backstory="Expert researcher",
llm=LLM(provider="anthropic", model="claude-3-sonnet") # Using Claude
llm=LLM(provider="anthropic", model="claude-sonnet-4-6") # Using Claude
)

# CrewAI will still use OpenAI embeddings by default for knowledge
Expand Down
2 changes: 1 addition & 1 deletion docs/edge/pt-BR/concepts/memory.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ memory = Memory()
memory = Memory(llm="gpt-4o")

# Usar Anthropic
memory = Memory(llm="anthropic/claude-3-haiku-20240307")
memory = Memory(llm="anthropic/claude-haiku-4-5")

# Usar Ollama para análise totalmente local/privada
memory = Memory(llm="ollama/llama3.2")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ writer:
role: "Creative Content Writer"
goal: "..."
backstory: "..."
llm: anthropic/claude-3-opus
llm: anthropic/claude-opus-4-6
```

## Testando e Iterando no Design de Agentes
Expand Down
12 changes: 6 additions & 6 deletions docs/edge/pt-BR/learn/llm-selection-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ from crewai import Agent, Task, Crew, LLM
manager_llm = LLM(model="gemini/gemini-3.7-flash", temperature=0.1)

# Modelo criativo para gerar conteúdo
content_llm = LLM(model="claude-3-5-sonnet-20241022", temperature=0.7)
content_llm = LLM(model="claude-sonnet-4-6", temperature=0.7)

# Modelo eficiente para processamento de dados
processing_llm = LLM(model="gpt-4o-mini", temperature=0)
Expand Down Expand Up @@ -324,7 +324,7 @@ domain_expert = Agent(
You've worked with companies like Salesforce, HubSpot, and emerging unicorns, giving
you perspective on both established and disruptive go-to-market strategies.
""",
llm=LLM(model="claude-3-5-sonnet", temperature=0.3) # Criatividade balanceada com conhecimento de domínio
llm=LLM(model="claude-sonnet-4-6", temperature=0.3) # Criatividade balanceada com conhecimento de domínio
)

# Esse contexto faz o Claude agir como especialista do setor
Expand Down Expand Up @@ -356,7 +356,7 @@ tech_writer = Agent(
and practical use cases. You prioritize accuracy and usability over marketing fluff.
""",
llm=LLM(
model="claude-3-5-sonnet",
model="claude-sonnet-4-6",
temperature=0.1
),
tools=[code_analyzer_tool, api_scanner_tool],
Expand Down Expand Up @@ -420,7 +420,7 @@ Em vez de repetir o framework estratégico, segue um checklist tático para impl
# Agentes criativos ou customer-facing
content_agent = Agent(
role="Content Creator",
llm=LLM(model="claude-3-5-sonnet"),
llm=LLM(model="claude-sonnet-4-6"),
# ... demais configs
)
```
Expand Down Expand Up @@ -515,7 +515,7 @@ Em vez de repetir o framework estratégico, segue um checklist tático para impl
)

# Agentes herdam o LLM da crew, salvo sobrescrita
agent1 = Agent(llm=LLM(model="claude-3-5-sonnet"))
agent1 = Agent(llm=LLM(model="claude-sonnet-4-6"))
```

</Accordion>
Expand All @@ -533,7 +533,7 @@ Em vez de repetir o framework estratégico, segue um checklist tático para impl
tools=[search_tool, api_tool, data_tool],
llm=LLM(model="gpt-4o"),
# OU
llm=LLM(model="claude-3-5-sonnet")
llm=LLM(model="claude-sonnet-4-6")
)
```

Expand Down