mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-20 04:14:59 +00:00
updated cogs to aider/website/
This commit is contained in:
parent
05caccf3cc
commit
6c92dedac1
6 changed files with 14 additions and 14 deletions
|
@ -29,7 +29,7 @@ and works best with GPT-4o, Claude 3.5 Sonnet, Claude 3 Opus and DeepSeek Coder
|
|||
<!--[[[cog
|
||||
# We can't do this here: {% include get-started.md %}
|
||||
# Because this page is rendered by GitHub as the repo README
|
||||
cog.out(open("website/_includes/get-started.md").read())
|
||||
cog.out(open("aider/website/_includes/get-started.md").read())
|
||||
]]]-->
|
||||
|
||||
You can get started quickly like this:
|
||||
|
|
|
@ -18,7 +18,7 @@ cog.out(get_help_md())
|
|||
- **/drop** Remove files from the chat session to free up context space
|
||||
- **/exit** Exit the application
|
||||
- **/git** Run a git command
|
||||
- **/help** Show help about all commands
|
||||
- **/help** Ask questions about aider
|
||||
- **/lint** Lint and fix provided files or in-chat files if none provided
|
||||
- **/ls** List all known files and indicate which are included in the chat session
|
||||
- **/model** Switch to a new LLM
|
||||
|
|
|
@ -14,13 +14,13 @@ your git repo.
|
|||
|
||||
Below is a sample of the file, which you
|
||||
can also
|
||||
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/website/assets/sample.aider.conf.yml).
|
||||
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/aider/website/assets/sample.aider.conf.yml).
|
||||
|
||||
<!--[[[cog
|
||||
from aider.args import get_sample_yaml
|
||||
from pathlib import Path
|
||||
text=get_sample_yaml()
|
||||
Path("website/assets/sample.aider.conf.yml").write_text(text)
|
||||
Path("aider/website/assets/sample.aider.conf.yml").write_text(text)
|
||||
cog.outl("```")
|
||||
cog.out(text)
|
||||
cog.outl("```")
|
||||
|
|
|
@ -19,13 +19,13 @@ You can give it an explicit file to load with the `--env-file <filename>` parame
|
|||
|
||||
Below is a sample `.env` file, which you
|
||||
can also
|
||||
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/website/assets/sample.env).
|
||||
[download from GitHub](https://github.com/paul-gauthier/aider/blob/main/aider/website/assets/sample.env).
|
||||
|
||||
<!--[[[cog
|
||||
from aider.args import get_sample_dotenv
|
||||
from pathlib import Path
|
||||
text=get_sample_dotenv()
|
||||
Path("website/assets/sample.env").write_text(text)
|
||||
Path("aider/website/assets/sample.env").write_text(text)
|
||||
cog.outl("```")
|
||||
cog.out(text)
|
||||
cog.outl("```")
|
||||
|
|
|
@ -43,7 +43,7 @@ and works best with GPT-4o, Claude 3.5 Sonnet, Claude 3 Opus and DeepSeek Coder
|
|||
<!-- NOOP
|
||||
# We can't do this here: {% include get-started.md %}
|
||||
# Because this page is rendered by GitHub as the repo README
|
||||
cog.out(open("website/_includes/get-started.md").read())
|
||||
cog.out(open("aider/website/_includes/get-started.md").read())
|
||||
-->
|
||||
|
||||
You can get started quickly like this:
|
||||
|
|
|
@ -12,10 +12,10 @@ fi
|
|||
# README.md before index.md, because index.md uses cog to include README.md
|
||||
cog $ARG \
|
||||
README.md \
|
||||
website/index.md \
|
||||
website/HISTORY.md \
|
||||
website/docs/commands.md \
|
||||
website/docs/languages.md \
|
||||
website/docs/config/dotenv.md \
|
||||
website/docs/config/options.md \
|
||||
website/docs/config/aider_conf.md
|
||||
aider/website/index.md \
|
||||
aider/website/HISTORY.md \
|
||||
aider/website/docs/commands.md \
|
||||
aider/website/docs/languages.md \
|
||||
aider/website/docs/config/dotenv.md \
|
||||
aider/website/docs/config/options.md \
|
||||
aider/website/docs/config/aider_conf.md
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue