Skip to content

Commit

Permalink
Update docs with new function format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rocketknight1 committed Jun 11, 2024
1 parent 6c29d46 commit 0ab8c7f
Showing 1 changed file with 39 additions and 25 deletions.
64 changes: 39 additions & 25 deletions docs/source/en/chat_templating.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ The current temperature in Paris, France is 22.0掳C (71.6掳F).
```

Although this was a simple demo with only a single call, the same technique works with
multiple tools and longer conversations. This can be a powerful ways to extend the capabilities of conversational
multiple tools and longer conversations. This can be a powerful way to extend the capabilities of conversational
agents with real-time information, computational tools like calculators, or access to large databases.

<Tip>
Expand Down Expand Up @@ -447,22 +447,25 @@ This will yield:

```json
{
"type": "function",
"function": {
"name": "multiply",
"description": "Multiply two numbers together.",
"description": "A function that multiplies two numbers",
"parameters": {
"type": "object",
"properties": {
"a": {
"type": "number",
"description": "The first number to multiply."
},
"b": {
"type": "number",
"description": "The second number to multiply."
}
"type": "object",
"properties": {
"a": {
"type": "number",
"description": "The first number to multiply"
},
"required": ["a", "b"]
"b": {
"type": "number",
"description": "The second number to multiply"
}
},
"required": ["a", "b"]
}
}
}
```

Expand All @@ -478,27 +481,38 @@ Here is an example of defining schemas by hand, and passing them directly to `ap
```python
# A simple function that takes no arguments
current_time = {
"type": "function",
"function": {
"name": "current_time",
"description": "Get the current local time as a string.",
"parameters": {
'type': 'object',
'properties': {}
},
'type': 'object',
'properties': {}
}
}
}

# A more complete function that takes two numerical arguments
multiply = {
"name": "multiply",
"description": "Multiply two numbers together.",
"parameters": {
"type": "object",
"properties": {
"a": {"type": "number", "description": "The first number to multiply."},
"b": {"type": "number", "description": "The second number to multiply."},
},
"required": ["a", "b"],
'type': 'function',
'function': {
'name': 'multiply',
'description': 'A function that multiplies two numbers',
'parameters': {
'type': 'object',
'properties': {
'a': {
'type': 'number',
'description': 'The first number to multiply'
},
'b': {
'type': 'number', 'description': 'The second number to multiply'
}
},
'required': ['a', 'b']
}
}
}

model_input = tokenizer.apply_chat_template(
messages,
Expand Down

0 comments on commit 0ab8c7f

Please sign in to comment.