mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
fcf114ac67
Signed-off-by: Tyler Slaton <tyler@copilotkit.ai> Co-authored-by: Brandon McConnell <brandon@dreamthinkbuild.com>
28 lines
574 B
Plaintext
28 lines
574 B
Plaintext
import { Tabs, Tab } from "fumadocs-ui/components/tabs";
|
|
|
|
<Tabs className="p-0 m-0" groupId="python-pm" items={['uv', 'poetry', 'pip', 'conda']} default="uv">
|
|
<Tab value="uv">
|
|
```bash
|
|
uv add copilotkit
|
|
```
|
|
</Tab>
|
|
<Tab value="poetry">
|
|
```bash
|
|
poetry add copilotkit
|
|
```
|
|
</Tab>
|
|
|
|
<Tab value="pip">
|
|
|
|
```bash
|
|
pip install copilotkit --extra-index-url https://copilotkit.gateway.scarf.sh/simple/
|
|
```
|
|
</Tab>
|
|
|
|
<Tab value="conda">
|
|
```bash
|
|
conda install copilotkit -c copilotkit-channel
|
|
```
|
|
</Tab>
|
|
</Tabs>
|