Docs Draft (#286)

This commit is contained in:
William FH
2024-04-15 22:44:12 -07:00
committed by GitHub
parent eb10fe599b
commit 85f48da84e
22 changed files with 544 additions and 527 deletions
-7
View File
@@ -1,11 +1,4 @@
# Checkpoints
::: langgraph.checkpoint
handler: python
options:
selection:
docstring_style: google
rendering:
heading_level: 3
show_root_toc_entry: false
+9 -8
View File
@@ -1,11 +1,12 @@
# StateGraph
# Graph Definitions
::: langgraph.graph
handler: python
options:
selection:
docstring_style: google
rendering:
heading_level: 3
show_root_toc_entry: false
## CompiledGraph
::: langgraph.graph.graph.CompiledGraph
handler: python
members:
- get_graph
- invoke
+45 -8
View File
@@ -1,11 +1,48 @@
# Prebuilt
# Prebuilt
## ToolNode
::: langgraph.prebuilt
```python
from langgraph.prebuilt import ToolNode
```
::: langgraph.prebuilt.ToolNode
handler: python
options:
selection:
docstring_style: google
rendering:
heading_level: 3
show_root_toc_entry: false
## ToolExecutor
```python
from langgraph.prebuilt import ToolExecutor
```
::: langgraph.prebuilt.ToolExecutor
handler: python
## ToolInvocation
```python
from langgraph.prebuilt import ToolInvocation
```
::: langgraph.prebuilt.ToolInvocation
handler: python
heading_level: 4
## `chat_agent_executor.create_tool_calling_executor`
```python
from langgraph.prebuilt.chat_agent_executor import create_tool_calling_executor
```
::: langgraph.prebuilt.chat_agent_executor
## `create_agent_executor`
```python
from langgraph.prebuilt import create_agent_executor
```
::: langgraph.prebuilt.create_agent_executor