diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-28 20:31:15 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-28 20:31:15 -0700 |
commit | 40cfabb8ce8afe20e51ca4bafddc6a0b4755bf2c (patch) | |
tree | 73e330973ff154f10053f0bd94eeb2c72a8d28b2 /docs | |
parent | 36d517e37d87b1bd39d6027577714b60c32e81e9 (diff) | |
download | sncontinue-40cfabb8ce8afe20e51ca4bafddc6a0b4755bf2c.tar.gz sncontinue-40cfabb8ce8afe20e51ca4bafddc6a0b4755bf2c.tar.bz2 sncontinue-40cfabb8ce8afe20e51ca4bafddc6a0b4755bf2c.zip |
feat: :sparkles: @terminal context provider
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docs/context-providers.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/docs/context-providers.md b/docs/docs/context-providers.md index 9af35e4f..3147f90e 100644 --- a/docs/docs/context-providers.md +++ b/docs/docs/context-providers.md @@ -96,6 +96,18 @@ GoogleContextProvider( Note: You can get an API key for free at [serper.dev](https://serper.dev). +### Terminal + +Type '@terminal' to reference the contents of your IDE's terminal. + +```python +from continuedev.src.continuedev.plugins.context_providers.terminal import TerminalContextProvider +``` + +```python +TerminalContextProvider() +``` + ### Requesting Context Providers Not seeing what you want? Create an issue [here](https://github.com/continuedev/continue/issues/new?assignees=TyDunn&labels=enhancement&projects=&template=feature-request-%F0%9F%92%AA.md&title=) to request a new ContextProvider. |