Skip to content

Commit 61b0d15

Browse files
committed
style: use a shell code block whenever there is a pip install
1 parent 263f807 commit 61b0d15

File tree

11 files changed

+19
-13
lines changed

11 files changed

+19
-13
lines changed

sources/platform/integrations/ai/agno.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ While our examples use OpenAI, Agno supports other LLM providers as well. You'll
3838
- _Python environment_: Ensure Python is installed (version 3.8+ recommended).
3939
- _Required packages_: Install the following dependencies in your terminal:
4040

41-
```bash
41+
```shell
4242
pip install agno apify-client
4343
```
4444

sources/platform/integrations/ai/crewai.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This guide demonstrates how to integrate Apify Actors with CrewAI by building a
3030
- **OpenAI API key**: To power the agents in CrewAI, you need an OpenAI API key. Get one from the [OpenAI platform](https://platform.openai.com/account/api-keys).
3131
- **Python packages**: Install the following Python packages:
3232

33-
```bash
33+
```shell
3434
pip install 'crewai[tools]' langchain-apify langchain-openai
3535
```
3636

sources/platform/integrations/ai/haystack.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The last step will be to retrieve the most similar documents.
1919
This example uses the Apify-Haystack Python integration published on [PyPi](https://pypi.org/project/apify-haystack/).
2020
Before we start with the integration, we need to install all dependencies:
2121

22-
```bash
22+
```shell
2323
pip install apify-haystack haystack-ai
2424
```
2525

sources/platform/integrations/ai/langchain.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ If you prefer to use JavaScript, you can follow the [JavaScript LangChain docum
2020

2121
Before we start with the integration, we need to install all dependencies:
2222

23-
`pip install langchain langchain-openai langchain-apify`
23+
```shell
24+
pip install langchain langchain-openai langchain-apify
25+
```
2426

2527
After successful installation of all dependencies, we can start writing code.
2628

sources/platform/integrations/ai/langflow.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ Langflow can either be installed locally or used in the cloud. The cloud version
4343

4444
First, install the Langflow platform using Python package and project manager [uv](https://docs.astral.sh/uv/):
4545

46-
```bash
46+
```shell
4747
uv pip install langflow
4848
```
4949

5050
After installing Langflow, you can start the platform:
5151

52-
```bash
52+
```shell
5353
uv run langflow run
5454
```
5555

sources/platform/integrations/ai/langgraph.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This guide will demonstrate how to use Apify Actors with LangGraph by building a
3232

3333
- **Python packages**: You need to install the following Python packages:
3434

35-
```bash
35+
```shell
3636
pip install langgraph langchain-apify langchain-openai
3737
```
3838

sources/platform/integrations/ai/llama.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ You can integrate Apify dataset or Apify Actor with LlamaIndex.
2222

2323
Before we start with the integration, we need to install all dependencies:
2424

25-
`pip install apify-client llama-index-core llama-index-readers-apify`
25+
```shell
26+
pip install apify-client llama-index-core llama-index-readers-apify
27+
```
2628

2729
After successfully installing all dependencies, we can start writing Python code.
2830

sources/platform/integrations/ai/milvus.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Another way to interact with Milvus is through the [Apify Python SDK](https://do
6666

6767
1. Install the Apify Python SDK by running the following command:
6868

69-
```py
69+
```shell
7070
pip install apify-client
7171
```
7272

sources/platform/integrations/ai/openai_assistants.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The image below provides an overview of the entire process:
2929

3030
Before we start creating the assistant, we need to install all dependencies:
3131

32-
```bash
32+
```shell
3333
pip install apify-client openai
3434
```
3535

@@ -260,7 +260,7 @@ For more information on automating this process, check out the blog post [How we
260260

261261
Before we start, we need to install all dependencies:
262262

263-
```bash
263+
```shell
264264
pip install apify-client openai
265265
```
266266

sources/platform/integrations/ai/pinecone.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,9 @@ Another way to interact with Pinecone is through the [Apify Python SDK](https://
7474

7575
1. Install the Apify Python SDK by running the following command:
7676

77-
`pip install apify-client`
77+
```shell
78+
pip install apify-client
79+
```
7880

7981
1. Create a Python script and import all the necessary modules:
8082

0 commit comments

Comments
 (0)