Move graph use case to "more" section (#8997)

Clean `use_cases` by moving the `GraphDB` to `integrations`.

---------

Co-authored-by: Bagatur <baskaryan@gmail.com>
This commit is contained in:
Lance Martin 2023-08-14 17:20:38 -07:00 committed by GitHub
parent c478fc208e
commit 969e1683de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 84 additions and 13 deletions

View File

@ -1620,17 +1620,29 @@
"source": "/en/latest/modules/chains/examples/flare.html",
"destination": "/docs/use_cases/question_answering/how_to/flare"
},
{
"source": "/docs/use_cases/graph/graph_cypher_qa",
"destination": "/docs/use_cases/more/graph/graph_cypher_qa"
},
{
"source": "/en/latest/modules/chains/examples/graph_cypher_qa.html",
"destination": "/docs/use_cases/graph/graph_cypher_qa"
"destination": "/docs/use_cases/more/graph/graph_cypher_qa"
},
{
"source": "/docs/use_cases/graph/graph_nebula_qa",
"destination": "/docs/use_cases/more/graph/graph_nebula_qa"
},
{
"source": "/en/latest/modules/chains/examples/graph_nebula_qa.html",
"destination": "/docs/use_cases/graph/graph_nebula_qa"
"destination": "/docs/use_cases/more/graph/graph_nebula_qa"
},
{
"source": "/docs/use_cases/graph/graph_qa",
"destination": "/docs/use_cases/more/graph/graph_qa"
},
{
"source": "/en/latest/modules/chains/index_examples/graph_qa.html",
"destination": "/docs/use_cases/graph/graph_qa"
"destination": "/docs/use_cases/more/graph/graph_qa"
},
{
"source": "/en/latest/modules/chains/index_examples/hyde.html",
@ -3876,41 +3888,77 @@
"source": "/docs/modules/chains/additional/pal",
"destination": "/docs/use_cases/code_writing/pal"
},
{
"source": "/docs/use_cases/graph/graph_arangodb_qa",
"destination": "/docs/use_cases/more/graph/graph_arangodb_qa"
},
{
"source": "/docs/modules/chains/additional/graph_arangodb_qa",
"destination": "/docs/use_cases/graph/graph_arangodb_qa"
"destination": "/docs/use_cases/more/graph/graph_arangodb_qa"
},
{
"source": "/docs/use_cases/graph/graph_cypher_qa",
"destination": "/docs/use_cases/more/graph/graph_cypher_qa"
},
{
"source": "/docs/modules/chains/additional/graph_cypher_qa",
"destination": "/docs/use_cases/graph/graph_cypher_qa"
"destination": "/docs/use_cases/more/graph/graph_cypher_qa"
},
{
"source": "/docs/use_cases/graph/graph_hugegraph_qa",
"destination": "/docs/use_cases/more/graph/graph_hugegraph_qa"
},
{
"source": "/docs/modules/chains/additional/graph_hugegraph_qa",
"destination": "/docs/use_cases/graph/graph_hugegraph_qa"
"destination": "/docs/use_cases/more/graph/graph_hugegraph_qa"
},
{
"source": "/docs/use_cases/graph/graph_kuzu_qa",
"destination": "/docs/use_cases/more/graph/graph_kuzu_qa"
},
{
"source": "/docs/modules/chains/additional/graph_kuzu_qa",
"destination": "/docs/use_cases/graph/graph_kuzu_qa"
"destination": "/docs/use_cases/more/graph/graph_kuzu_qa"
},
{
"source": "/docs/use_cases/graph/graph_nebula_qa",
"destination": "/docs/use_cases/more/graph/graph_nebula_qa"
},
{
"source": "/docs/modules/chains/additional/graph_nebula_qa",
"destination": "/docs/use_cases/graph/graph_nebula_qa"
"destination": "/docs/use_cases/more/graph/graph_nebula_qa"
},
{
"source": "/docs/use_cases/graph/graph_qa",
"destination": "/docs/use_cases/more/graph/graph_qa"
},
{
"source": "/docs/modules/chains/additional/graph_qa",
"destination": "/docs/use_cases/graph/graph_qa"
"destination": "/docs/use_cases/more/graph/graph_qa"
},
{
"source": "/docs/use_cases/graph/graph_sparql_qa",
"destination": "/docs/use_cases/more/graph/graph_sparql_qa"
},
{
"source": "/docs/modules/chains/additional/graph_sparql_qa",
"destination": "/docs/use_cases/graph/graph_sparql_qa"
"destination": "/docs/use_cases/more/graph/graph_sparql_qa"
},
{
"source": "/docs/use_cases/graph/neptune_cypher_qa",
"destination": "/docs/use_cases/more/graph/neptune_cypher_qa"
},
{
"source": "/docs/modules/chains/additional/neptune_cypher_qa",
"destination": "/docs/use_cases/graph/neptune_cypher_qa"
"destination": "/docs/use_cases/more/graph/neptune_cypher_qa"
},
{
"source": "/docs/use_cases/graph/tot",
"destination": "/docs/use_cases/more/graph/tot"
},
{
"source": "/docs/modules/chains/additional/tot",
"destination": "/docs/use_cases/graph/tot"
"destination": "/docs/use_cases/more/graph/tot"
},
{
"source": "/docs/use_cases/question_answering//document-context-aware-QA",

View File

@ -1,3 +1,7 @@
---
sidebar_position: 0
---
# Agent simulations
Agent simulations involve interacting one of more agents with each other.

View File

@ -1,3 +1,7 @@
---
sidebar_position: 0
---
# Agents
Agents can be used for a variety of tasks.

View File

@ -1,3 +1,7 @@
---
sidebar_position: 0
---
# Autonomous (long-running) agents
Autonomous Agents are agents that designed to be more long running.

View File

@ -1,3 +1,7 @@
---
sidebar_position: 0
---
# Code writing
:::warning

View File

@ -0,0 +1,2 @@
label: 'More'
position: 1

View File

@ -1 +1,2 @@
label: 'Multi-modal'
position: 0

View File

@ -1,5 +1,5 @@
---
sidebar_position: 0
sidebar_position: -1
---
# QA over Documents

View File

@ -1,3 +1,7 @@
---
sidebar_position: 0
---
# Self-checking
One of the main issues with using LLMs is that they can often hallucinate and make false claims. One of the surprisingly effective ways to remediate this is to use the LLM itself to check its own answers.