Skip to content

Commit

Permalink
Revert notebook changes attempt 2...
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuzmik committed Nov 25, 2024
1 parent 1bac9e1 commit 85c80b7
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install . pyarrow fsspec huggingface_hub --upgrade --quiet"
"%pip install opik pyarrow fsspec huggingface_hub --upgrade --quiet"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For this guide we will be evaluating the Hallucination metric included in the LL

```python
%pip install . pyarrow fsspec huggingface_hub --upgrade --quiet
%pip install opik pyarrow fsspec huggingface_hub --upgrade --quiet
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install . llama-index llama-index-agent-openai llama-index-llms-openai --upgrade --quiet"
"%pip install opik llama-index llama-index-agent-openai llama-index-llms-openai --upgrade --quiet"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For this guide we will be downloading the essays from Paul Graham and use them a

```python
%pip install . llama-index llama-index-agent-openai llama-index-llms-openai --upgrade --quiet
%pip install opik llama-index llama-index-agent-openai llama-index-llms-openai --upgrade --quiet
```


Expand Down
2 changes: 1 addition & 1 deletion apps/opik-documentation/documentation/docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Getting started is as simple as creating an [account on Comet](https://www.comet
Once your account is created, you can start logging traces by installing the Opik Python SDK:

```bash
pip install .
pip install opik
```

and configuring the SDK with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Opik will now be available at <a href="http://localhost:5173" target="_blank">ht
In order to use the Opik Python SDK with your local Opik instance, you will need to run:

```bash
pip install .
pip install opik

opik configure --use_local
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This guide explains how to integrate Opik with the Anthropic Python SDK. By usin
To start tracking your Anthropic LLM calls, you'll need to have both the `opik` and `anthropic`. You can install them using pip:

```bash
pip install . anthropic
pip install opik anthropic
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This guide explains how to integrate Opik with the Bedrock Python SDK. By using
To start tracking your Bedrock LLM calls, you'll need to have both the `opik` and `boto3`. You can install them using pip:

```bash
pip install . boto3
pip install opik boto3
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sidebar_label: Gemini - Google AI Studio
To start tracking your Gemini LLM calls, you can use our [LiteLLM integration](/docs/opik/tracing/integrations/litellm). You'll need to have both the `opik`, `litellm` and `google-generativeai` packages installed. You can install them using pip:

```bash
pip install . litellm google-generativeai
pip install opik litellm google-generativeai
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sidebar_label: Groq
To start tracking your Groq LLM calls, you can use our [LiteLLM integration](/docs/opik/tracing/integrations/litellm). You'll need to have both the `opik` and `litellm` packages installed. You can install them using pip:

```bash
pip install . litellm
pip install opik litellm
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Opik provides seamless integration with LangChain, allowing you to easily log an
To use the `OpikTracer` with LangChain, you'll need to have both the `opik` and `langchain` packages installed. You can install them using pip:

```bash
pip install . langchain langchain_openai
pip install opik langchain langchain_openai
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Opik provides a seamless integration with LangGraph, allowing you to easily log
To use the [`OpikTracer`](https://www.comet.com/docs/opik/python-sdk-reference/integrations/langchain/OpikTracer.html) with LangGraph, you'll need to have both the `opik` and `langgraph` packages installed. You can install them using pip:

```bash
pip install . langgraph
pip install opik langgraph
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sidebar_label: LiteLLM
First, ensure you have both `opik` and `litellm` packages installed:

```bash
pip install . litellm
pip install opik litellm
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ sidebar_label: LlamaIndex
To use the Opik integration with LlamaIndex, you'll need to have both the `opik` and `llama_index` packages installed. You can install them using pip:

```bash
pip install . llama-index llama-index-agent-openai llama-index-llms-openai
pip install opik llama-index llama-index-agent-openai llama-index-llms-openai
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This guide explains how to integrate Opik with the OpenAI Python SDK. By using t
First, ensure you have both `opik` and `openai` packages installed:

```bash
pip install . openai
pip install opik openai
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ There are two main ways to use Ragas with Opik:
You will first need to install the `opik` and `ragas` packages:

```bash
pip install . ragas
pip install opik ragas
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ sidebar_label: watsonx
To start tracking your watsonx LLM calls, you can use our [LiteLLM integration](/docs/opik/tracing/integrations/litellm). You'll need to have both the `opik` and `litellm` packages installed. You can install them using pip:

```bash
pip install . litellm
pip install opik litellm
```

In addition, you can configure Opik using the `opik configure` command which will prompt you for the correct local server address or if you are using the Cloud platfrom your API key:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ In order to use the Opik Python SDK, you will need to install it and configure i

```bash
# Install the SDK
pip install .
pip install opik

# Configure the SDK
opik configure
Expand Down

0 comments on commit 85c80b7

Please sign in to comment.