Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 16 additions & 19 deletions fern/tools/handoff.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ Best for OpenAI models - creates separate tool definitions for each destination:
"tools": [
{
"type": "handoff",
"name": "handoff_to_sales",
"destinations": [
{
"type": "assistant",
Expand All @@ -116,7 +115,6 @@ Best for OpenAI models - creates separate tool definitions for each destination:
},
{
"type": "handoff",
"name": "handoff_to_support",
"destinations": [
{
"type": "assistant",
Expand All @@ -130,7 +128,6 @@ Best for OpenAI models - creates separate tool definitions for each destination:
},
{
"type": "handoff",
"name": "handoff_to_billing",
"destinations": [
{
"type": "assistant",
Expand Down Expand Up @@ -210,23 +207,23 @@ Your server must respond to this request with a single destination. You may pass

```json
destination: {
"type": "assistant",
"assistantId": "assistant-id",
"variableExtractionPlan": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the customer",
},
},
"required": ["name"],
"type": "assistant",
"assistantId": "assistant-id",
"variableExtractionPlan": {
"schema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the customer",
},
},
},
"contextEngineeringPlan": {
"type": "none",
},
"required": ["name"],
},
},
"contextEngineeringPlan": {
"type": "none",
},
},
```

Expand Down
Loading