Skip to content

Commit

Permalink
Merge pull request #66 from harishmohanraj/add-front-matter-to-all-no…
Browse files Browse the repository at this point in the history
…tebooks

Add front matter to notebooks
  • Loading branch information
harishmohanraj authored Dec 31, 2024
2 parents de2c59d + f9d2fcc commit 30506cb
Show file tree
Hide file tree
Showing 5 changed files with 56 additions and 1 deletion.
6 changes: 6 additions & 0 deletions notebook/agentchat_MathChat.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -993,6 +993,12 @@
}
],
"metadata": {
"front_matter": {
"description": "Using MathChat to Solve Math Problems",
"tags": [
"math"
]
},
"kernelspec": {
"display_name": "flaml_dev",
"language": "python",
Expand Down
7 changes: 7 additions & 0 deletions notebook/agentchat_graph_rag_falkordb.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,13 @@
}
],
"metadata": {
"front_matter": {
"description": "Using FalkorGraphRagCapability with agents for GraphRAG Question & Answering",
"tags": [
"RAG",
"FalkorDB"
]
},
"kernelspec": {
"display_name": "Python 3",
"language": "python",
Expand Down
7 changes: 7 additions & 0 deletions notebook/config_loader_utility_functions.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,13 @@
}
],
"metadata": {
"front_matter": {
"description": "Config loader utility functions",
"tags": [
"utility",
"config"
]
},
"kernelspec": {
"display_name": "masterclass",
"language": "python",
Expand Down
5 changes: 4 additions & 1 deletion website/mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,10 @@
"notebooks/agentchat_realtime_websocket",
"notebooks/agentchat_reasoning_agent",
"notebooks/agentchat_captainagent_crosstool",
"notebooks/agentchat_realtime_websocket"
"notebooks/agentchat_realtime_websocket",
"notebooks/agentchat_graph_rag_falkordb",
"notebooks/agentchat_MathChat",
"notebooks/config_loader_utility_functions"
]
},
"notebooks/Gallery"
Expand Down
32 changes: 32 additions & 0 deletions website/snippets/data/NotebooksMetadata.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1257,5 +1257,37 @@ export const notebooksMetadata = [
"websockets"
],
"source": "/notebook/agentchat_realtime_websocket.ipynb"
},
{
"title": "Using FalkorGraphRagCapability with agents for GraphRAG Question & Answering",
"link": "/notebooks/agentchat_graph_rag_falkordb",
"description": "Using FalkorGraphRagCapability with agents for GraphRAG Question & Answering",
"image": null,
"tags": [
"RAG",
"FalkorDB"
],
"source": "/notebook/agentchat_graph_rag_falkordb.ipynb"
},
{
"title": "Auto Generated Agent Chat: Using MathChat to Solve Math Problems",
"link": "/notebooks/agentchat_MathChat",
"description": "Using MathChat to Solve Math Problems",
"image": null,
"tags": [
"math"
],
"source": "/notebook/agentchat_MathChat.ipynb"
},
{
"title": "Config loader utility functions",
"link": "/notebooks/config_loader_utility_functions",
"description": "Config loader utility functions",
"image": null,
"tags": [
"utility",
"config"
],
"source": "/notebook/config_loader_utility_functions.ipynb"
}
];

0 comments on commit 30506cb

Please sign in to comment.