Skip to content

Commit

Permalink
Merge branch 'main' into fix/courses-redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixNicolaeBucsa authored Nov 21, 2024
2 parents c06e817 + 9b495a2 commit 5c759b5
Show file tree
Hide file tree
Showing 5 changed files with 145 additions and 104 deletions.
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 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 ethereum from "../src/svgs/ethereum.svg";
import darkEthereum from "../src/svgs/dark-ethereum.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 ? fastapi : darkFastapi,
link: "/guides/agents/intermediate/rest-endpoints",
},
{
name: "Ethereum",
icon: theme === ThemeMode.Light ? ethereum : darkEthereum,
link: "/examples/intermediate/sending-and-verifying-token-transactions-with-agent",
},
{
name: "CrewAI",
icon: theme === ThemeMode.Light ? crewai : darkCrewai,
Expand Down
21 changes: 11 additions & 10 deletions pages/examples/intermediate/langchain-rag.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,17 +85,18 @@ export OPENAI_API_KEY="YOUR_OPENAI_API_KEY"
```
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
uagents = "*"
uagents = "^0.17.1"
requests = "^2.31.0"
langchain = "^0.2.11"
openai = "^1.12.0"
langchain-openai = "^0.1.19"
tiktoken = "^0.7.0"
cohere = "^4.47"
faiss-cpu = "^1.7.4"
validators = "^0.22.0"
uagents-ai-engine = "^0.4.0"
unstructured = "^0.12.4"
langchain = "^0.3.7"
openai = "^1.54.5"
langchain-openai = "^0.2.9"
tiktoken = "^0.8.0"
cohere = "^5.11.4"
faiss-cpu = "^1.9.0.post1"
validators = "^0.34.0"
uagents-ai-engine = "^0.6.0"
unstructured = "^0.16.5"
langchain-community = "^0.3.7"
```

### RagRequest Model
Expand Down
Loading

0 comments on commit 5c759b5

Please sign in to comment.