Skip to content

Commit

Permalink
feat(docs): add openAI tooling link on landing page (#1014)
Browse files Browse the repository at this point in the history
  • Loading branch information
gautamgambhir97 authored Oct 23, 2024
1 parent 1cbbc56 commit 7e4178e
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 1 deletion.
7 changes: 7 additions & 0 deletions components/landing-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ import coursesStackSecond from "../src/svgs/courses-stack-second.svg";
import langchain from "../src/svgs/langchain.svg";
import crewai from "../src/svgs/crewai.svg";
import fastapi from "../src/svgs/fastapi.svg";
import openAI from "../src/svgs/openai.svg";
import darkOpenAI from "../src/svgs/dark-openai.svg";
import darkLangchain from "../src/svgs/dark-langchain.svg";
import darkCrewai from "../src/svgs/dark-crew-ai.svg";
import darkFastapi from "../src/svgs/dark-fast-api.svg";
Expand Down Expand Up @@ -60,6 +62,11 @@ function LandingPage() {
icon: theme === ThemeMode.Light ? crewai : darkCrewai,
link: "/guides/quickstart-with/CrewAI/startup-idea-analyser",
},
{
name: "OpenAI",
icon: theme === ThemeMode.Light ? openAI : darkOpenAI,
link: "/guides/quickstart-with/OpenAI/integrating-with-swarm",
},
];

const courses = [
Expand Down
2 changes: 1 addition & 1 deletion pages/examples/intermediate/hugging-face-agent.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ This system shows how to integrate the Hugging Face API with an Agentverse Agent
```
</DocsCode>

<DocsCode local={true}>
<DocsCode local={false}>

```python copy filename="agent.py"
# Here we demonstrate how we can create a model list agent that is compatible with DeltaV.
Expand Down
10 changes: 10 additions & 0 deletions src/svgs/dark-openai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions src/svgs/openai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 7e4178e

Please sign in to comment.