Update README.md
Browse files
README.md
CHANGED
|
@@ -72,6 +72,12 @@ def no_relevant_function(user_query : str):
|
|
| 72 |
|
| 73 |
Please ensure to provide an argument to this function, as Raven works best on functions with arguments.
|
| 74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 75 |
### Quickstart
|
| 76 |
You can run the model on a GPU using the following code.
|
| 77 |
```python
|
|
|
|
| 72 |
|
| 73 |
Please ensure to provide an argument to this function, as Raven works best on functions with arguments.
|
| 74 |
|
| 75 |
+
For parallel calls, due to the model being targeted for industry use, you can "enable" parallel calls by adding this into the prompt:
|
| 76 |
+
```python
|
| 77 |
+
"Setting: Allowed to issue multiple calls with semicolon\n"
|
| 78 |
+
```
|
| 79 |
+
This can be added above the User Query to "allow" the model to use parallel calls, otherwise, the model will focus on nested and single calls primarily.
|
| 80 |
+
|
| 81 |
### Quickstart
|
| 82 |
You can run the model on a GPU using the following code.
|
| 83 |
```python
|