Skip to content

Commit 0dfe599

Browse files
authored
Merge pull request #95 from ContextualAI/logo-update
Logo Update
2 parents 7dd1b79 + 5f2ed89 commit 0dfe599

19 files changed

Lines changed: 552 additions & 478 deletions

File tree

01-getting-started/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Contextual AI Platform Intro Examples
22

3-
<img src="https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra" alt="Alt Text" width="300">
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Light.png?raw=true">
5+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true">
6+
<img src="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true" alt="Contextual AI" width="300">
7+
</picture>
48

9+
<p></p>
510
This repository contains example notebooks demonstrating how to use the Contextual AI Platform for creating and deploying generative AI agents. The examples focus on implementing Retrieval-Augmented Generation (RAG) for financial use cases.
611

712
## Repository Structure

01-getting-started/end-to-end-example.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
"id": "8iPJnDH0HhXB"
77
},
88
"source": [
9-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
9+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
1010
"\n",
11-
"<br/>\n",
1211
"\n",
1312
"# Introduction to Contextual AI Platform using the Python Client\n",
1413
"\n",

01-getting-started/quick-start.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
"id": "8iPJnDH0HhXB"
77
},
88
"source": [
9-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
9+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
1010
"\n",
11-
"<br/>\n",
1211
"\n",
1312
"# Quick Start for Contextual AI Platform using the Python Client\n",
1413
"\n",

02-hands-on-lab/README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
<img src="https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra" alt="Image description" width="200" />
1+
<picture>
2+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Light.png?raw=true">
3+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true">
4+
<img src="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true" alt="Contextual AI" width="300">
5+
</picture>
26

37
<br/>
48

@@ -63,4 +67,4 @@ To quickly get started running the notebook we reccomend using [Google Colab](ht
6367
5. 🔑 Set up your API credentials in the respective [notebook](02-hands-on-lab/lab1_create_agent.ipynb)
6468
```bash
6569
API_TOKEN = '...' # Replace with your actual API token
66-
```
70+
```

02-hands-on-lab/lab1_create_agent.ipynb

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
7+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
88
"\n",
9-
"<br/>\n",
109
"\n",
1110
"# Lab 1: Create an Agent and Datastore\n",
1211
"\n",

03-standalone-api/01-lmunit/lmunit.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"id": "8iPJnDH0HhXB"
77
},
88
"source": [
9-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
9+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
1010
"\n",
1111
"<br/>\n",
1212
"\n",

03-standalone-api/02-generate/generate.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"id": "8iPJnDH0HhXB"
77
},
88
"source": [
9-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
9+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
1010
"\n",
1111
"<br/>\n",
1212
"\n",

03-standalone-api/03-rerank/rerank.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"id": "8iPJnDH0HhXB"
77
},
88
"source": [
9-
"<img src=\"https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra\" alt=\"Image description\" width=\"160\" />\n",
9+
"<img src=\"https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true\" alt=\"Image description\" width=\"160\" />\n",
1010
"\n",
1111
"<br/>\n",
1212
"\n",

03-standalone-api/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<picture>
2+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Light.png?raw=true">
3+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true">
4+
<img src="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true" alt="Contextual AI" width="300">
5+
</picture>
6+
17
# Component API Examples
28

39
This repository contains examples of using the component API's.

05-policy-changes/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Tracking Changes in Long Policy Documents Using Contextual AI
22

3-
<img src="https://imagedelivery.net/Dr98IMl5gQ9tPkFM5JRcng/3e5f6fbd-9bc6-4aa1-368e-e8bb1d6ca100/Ultra" alt="Alt Text" width="300">
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Light.png?raw=true">
5+
<source media="(prefers-color-scheme: light)" srcset="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true">
6+
<img src="https://github.com/ContextualAI/examples/blob/main/images/Contextual_AI_Lockup_Dark.png?raw=true" alt="Contextual AI" width="300">
7+
</picture>
8+
9+
<p></p>
410

511
<br>
612

@@ -74,4 +80,4 @@ You should now see a response incorporating the 2025 update.
7480

7581
## Notebook
7682

77-
The notebook walks you through setting up your agent, ingesting your data, and making the first query. To explore more of the python capabilities check out the end-to-end notebook or the full documentation.
83+
The notebook walks you through setting up your agent, ingesting your data, and making the first query. To explore more of the python capabilities check out the end-to-end notebook or the full documentation.

0 commit comments

Comments
 (0)