Skip to content
Merged

crewai #4554

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
8 changes: 4 additions & 4 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/agno.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ You can run the following steps either from your Python REPL or via script.
Install the Agno library by running the following commands:

```python
!pip install -q --upgrade pip
!pip install -q agno
!pip install -q ipywidgets
pip install -q --upgrade pip
pip install -q agno
pip install -q ipywidgets
```

## Setup credentials {#setup-credentials}
Expand All @@ -53,7 +53,7 @@ Enter Anthropic API Key: ········

:::note Using another LLM provider
If you don't have an Anthropic API key, and want to use another LLM provider,
you can find the instructions for setting up your credentials in the [DSPy docs](https://dspy.ai/#__tabbed_1_1)
you can find the instructions for setting up your credentials in the [Agno docs](https://docs.agno.com/concepts/models/introduction)
:::

Next, define the credentials needed to connect to the ClickHouse SQL playground:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ You can run the following steps either from your Python REPL or via script.
Install the Claude Agent SDK library by running the following commands:

```python
!pip install -q --upgrade pip
!pip install -q claude-agent-sdk
!pip install -q ipywidgets
pip install -q --upgrade pip
pip install -q claude-agent-sdk
pip install -q ipywidgets
```

## Setup credentials {#setup-credentials}
Expand Down
259 changes: 259 additions & 0 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/crewai.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/dspy.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ This example can be found as a notebook in the [examples repository](https://git
Run the following commands using `pip` to install the required libraries:

```shell
!pip install -q --upgrade pip
!pip install -q dspy
!pip install -q mcp
pip install -q --upgrade pip
pip install -q dspy
pip install -q mcp
```

## Setup credentials {#setup-credentials}
Expand Down
3 changes: 3 additions & 0 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,11 @@ doc_type: 'guide'
| [How to build a SlackBot agent using ClickHouse MCP Server.](/use-cases/AI/MCP/ai-agent-libraries/slackbot) | Learn how to build a SlackBot agent that can interact with ClickHouse MCP Server. |
| [How to build an AI Agent with Agno and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/agno) | Learn how build an AI Agent with Agno and the ClickHouse MCP Server |
| [How to build an AI Agent with Chainlit and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/chainlit) | Learn how to use Chainlit to build LLM-based chat apps together with the ClickHouse MCP Server |
| [How to build an AI Agent with Claude Agent SDK and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/claude-agent-sdk) | Learn how build an AI Agent with Claude Agent SDK and the ClickHouse MCP Server |
| [How to build an AI Agent with CopilotKit and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/copilotkit) | Learn how to build an agentic application using data stored in ClickHouse with ClickHouse MCP and CopilotKit |
| [How to build an AI Agent with CrewAI and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/crewai) | Learn how build an AI Agent with CrewAI and the ClickHouse MCP Server |
| [How to build an AI Agent with DSPy and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/DSPy) | Learn how to build an AI agent with DSPy and the ClickHouse MCP Server |
| [How to build an AI Agent with Microsoft Agent Framework and the ClickHouse MCP Server](/use-cases/AI/MCP/ai-agent-libraries/microsoft-agent-framework) | Learn how build an AI Agent with Microsoft Agent Framework and the ClickHouse MCP Server |
| [How to build an OpenAI agent using ClickHouse MCP Server.](/use-cases/AI/MCP/ai-agent-libraries/openai-agents) | Learn how to build an OpenAI agent that can interact with ClickHouse MCP Server. |
<!--AUTOGENERATED_END-->

6 changes: 2 additions & 4 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/langchain.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,8 @@ You can run the following steps either from your Python REPL or via script.
Install the required libraries by running the following commands:

```python
!pip install -q --upgrade pip
!pip install -q langchain-mcp-adapters
!pip install -q langgraph
!pip install -q "langchain[anthropic]"
pip install -q --upgrade pip
pip install -q langchain-mcp-adapters langgraph "langchain[anthropic]"
```

## Setup credentials {#setup-credentials}
Expand Down
7 changes: 2 additions & 5 deletions docs/use-cases/AI_ML/MCP/ai_agent_libraries/llamaindex.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,8 @@ You can run the following steps either from your Python REPL or via script.
Install the required libraries by running the following commands:

```python
!pip install -q --upgrade pip
!pip install -q llama-index
!pip install -q clickhouse-connect
!pip install -q llama-index-llms-anthropic
!pip install -q llama-index-tools-mcp
pip install -q --upgrade pip
pip install -q llama-index clickhouse-connect llama-index-llms-anthropic llama-index-tools-mcp
```

## Setup credentials {#setup-credentials}
Expand Down
Loading