-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add (docs): add some newer fields to the gpt file reference #683
add (docs): add some newer fields to the gpt file reference #683
Conversation
@@ -84,7 +84,7 @@ Continuing with the above example, this is how you can use it in a script: | |||
```yaml | |||
# my_context_with_arg.gpt | |||
context: ./context_with_arg.gpt with ${search} as search_tool | |||
Args: search: Search tool to use | |||
args: search: Search tool to use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only for consistency within this page
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm probably going to go through and capitalize everything (I think that's the more canonical way now) as I work on my docs revamp, so this is fine either way for now.
| `Agents` | A comma-separated list of agents that are available to the tool. | | ||
| `Share Tools` | A comma-separated list of tools that are shared by the tool. | | ||
| `Context` | A comma-separated list of context tools available to the tool. | | ||
| `Share Context` | A comma-separated list of context tools shared by this tool with any tool including this tool in its context. | | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's more here, but I'm not sure if we should put everything (e.g. temperature and max_tokens) here
42930d1
to
7b76699
Compare
Co-authored-by: Grant Linville <[email protected]> Signed-off-by: Thorsten Klein <[email protected]>
I browsed the documentation a little today and made some tiny changes/additions.
It's my first venture from the
knowledge
world back to GPTScript itself in a long time, so I hope I got those right :)