Commit graph

228 commits

Author SHA1 Message Date
paul-gauthier
ec6fd03e8c
Update README.md 2023-05-23 21:42:17 -07:00
Paul Gauthier
38db2016bd copy 2023-05-23 20:45:11 -07:00
Paul Gauthier
b2ef21fd4d copy 2023-05-23 12:20:07 -07:00
Paul Gauthier
73ad270578 copy 2023-05-23 10:17:14 -07:00
Paul Gauthier
45eb8d7e38 copy 2023-05-23 09:02:45 -07:00
Paul Gauthier
1797a731a0 copy 2023-05-23 08:34:29 -07:00
Paul Gauthier
cb53d7b01f copy 2023-05-23 08:25:37 -07:00
Paul Gauthier
b30b61df7d copy 2023-05-23 08:24:46 -07:00
Paul Gauthier
be84a10744 copy 2023-05-23 07:46:35 -07:00
Paul Gauthier
123237636c copy 2023-05-23 07:38:56 -07:00
Paul Gauthier
4509ec4457 copy 2023-05-23 07:36:32 -07:00
Paul Gauthier
4c1ebd7e5b copy 2023-05-23 07:35:47 -07:00
Paul Gauthier
8650d106e4 copy 2023-05-23 07:35:04 -07:00
Paul Gauthier
26b26bc5e5 copy 2023-05-23 07:19:01 -07:00
Paul Gauthier
b4b9e0cf03 copy 2023-05-23 07:18:26 -07:00
paul-gauthier
05ffa0525d
Update README.md 2023-05-22 11:30:42 -07:00
Paul Gauthier
1b26236970 copy 2023-05-22 09:56:08 -07:00
Paul Gauthier
e09b1cf2d7 Changed /commit command to commit outstanding changes to the repo instead of chat session files. 2023-05-22 09:54:37 -07:00
Paul Gauthier
76fb08f9c9 aider: Added /run <command> and /help commands to the Chat commands section in the README.md file.
# Context:
USER: add missing commands to the Chat commands section
ASSISTANT: I will add the missing commands to the Chat commands section in the README.md file.

```markdown
README.md
<<<<<<< ORIGINAL
`aider` supports the following commands from within the chat:

* `/add <file>`: Add matching files to the chat session.
* `/drop <file>`: Remove matching files from the chat session.
* `/ls`: List all known files and those included in the chat session.
* `/commit [message]`: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. aider will provide a commit message if you don't.
* `/undo`: Undo the last git commit if it was done by aider.
* `/diff`: Display the diff of the last aider commit.
=======
`aider` supports the following commands from within the chat:

* `/add <file>`: Add matching files to the chat session.
* `/drop <file>`: Remove matching files from the chat session.
* `/ls`: List all known files and those included in the chat session.
* `/commit [message]`: Commit outstanding changes to the chat session files. Use this to commit edits you made outside the chat, with your editor or git commands. aider will provide a commit message if you don't.
* `/undo`: Undo the last git commit if it was done by aider.
* `/diff`: Display the diff of the last aider commit.
* `/run <command>`: Run a shell command and optionally add the output to the chat.
* `/help`: Show help about all commands.
>>>>>>> UPDATED
```

I have added the `/run <command>` and `/help` commands to the Chat commands section in the README.md file.
2023-05-22 09:54:01 -07:00
Paul Gauthier
a52d115c94 copy 2023-05-22 09:51:54 -07:00
Paul Gauthier
26bacb906d copy 2023-05-22 09:51:20 -07:00
Paul Gauthier
9fe8896979 copy 2023-05-22 07:03:40 -07:00
Paul Gauthier
67e1e00ff5 copy 2023-05-21 16:30:53 -07:00
Paul Gauthier
bcbdd97cd8 copy 2023-05-21 16:27:49 -07:00
Paul Gauthier
956f03c14d copy 2023-05-21 16:27:11 -07:00
Paul Gauthier
d93018111b copy 2023-05-21 16:22:23 -07:00
Paul Gauthier
7d2c59432e copy 2023-05-19 10:52:23 -07:00
Paul Gauthier
a7d9a4790f aider: Added --ctags option to the usage section in README.md.
# Context:
USER: update the usage to include --ctags
ASSISTANT: ```markdown
README.md
<<<<<<< ORIGINAL
You can also use additional command-line options to customize the behavior of the tool. The following options are available, along with their corresponding environment variable overrides:

- `--input-history-file INPUT_HISTORY_FILE`: Specify the chat input history file (default: .aider.input.history). Override the default with the environment variable `AIDER_INPUT_HISTORY_FILE`.
- `--chat-history-file CHAT_HISTORY_FILE`: Specify the chat history file (default: .aider.chat.history.md). Override the default with the environment variable `AIDER_CHAT_HISTORY_FILE`.
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override the default with the environment variable `AIDER_MODEL`.
- `-3`: Use gpt-3.5-turbo model for the main chat (not advised). No environment variable override.
=======
You can also use additional command-line options to customize the behavior of the tool. The following options are available, along with their corresponding environment variable overrides:

- `--input-history-file INPUT_HISTORY_FILE`: Specify the chat input history file (default: .aider.input.history). Override the default with the environment variable `AIDER_INPUT_HISTORY_FILE`.
- `--chat-history-file CHAT_HISTORY_FILE`: Specify the chat history file (default: .aider.chat.history.md). Override the default with the environment variable `AIDER_CHAT_HISTORY_FILE`.
- `--model MODEL`: Specify the model to use for the main chat (default: gpt-4). Override the default with the environment variable `AIDER_MODEL`.
- `-3`: Use gpt-3.5-turbo model for the main chat (not advised). No environment variable override.
- `--ctags`: Add ctags to the chat to help GPT understand the codebase (default: False, `AIDER_CTAGS`). Override the default with the environment variable `AIDER_CTAGS`.
>>>>>>> UPDATED
```
I've updated the usage section in the README.md to include the `--ctags` option.
2023-05-19 10:50:53 -07:00
Paul Gauthier
f94db8c43f copy 2023-05-18 17:18:07 -07:00
Paul Gauthier
8ecdfbd459 copy 2023-05-18 17:17:08 -07:00
Moby von Briesen
c8158d96ee README: add instructions for installing from source 2023-05-18 15:50:57 -04:00
Paul Gauthier
1575e885b7 title 2023-05-16 06:41:03 -07:00
Paul Gauthier
3b69df6a82 undo 2023-05-16 06:33:56 -07:00
Paul Gauthier
a716d3fb6f Updated README.md with a new project description. 2023-05-16 06:29:46 -07:00
Paul Gauthier
2a1b2f8163 wip: Changed README.md header to be more concise. 2023-05-16 06:27:43 -07:00
Paul Gauthier
7c746d27b8 copy 2023-05-16 06:26:07 -07:00
Paul Gauthier
ba3172ba6c revert to old title/desc 2023-05-16 05:49:20 -07:00
Paul Gauthier
defa8717e4 wip: Updated project description and fixed config file paths and descriptions. 2023-05-16 05:44:52 -07:00
Paul Gauthier
74d090876a cleanup 2023-05-16 05:36:56 -07:00
Paul Gauthier
edd06e07c2 ## aider on main readme 2023-05-16 05:22:22 -07:00
Paul Gauthier
5cc2e0a993 link directly to aider.chat from main README 2023-05-15 20:59:10 -07:00
paul-gauthier
fadbe82ebc
Update README.md 2023-05-15 20:11:30 -07:00
Paul Gauthier
4dbedff164 copy 2023-05-15 17:25:48 -07:00
Paul Gauthier
5c5202a101 copy 2023-05-15 12:30:37 -07:00
Paul Gauthier
62aab7ee74 added gif animated screenshot 2023-05-15 09:12:45 -07:00
paul-gauthier
64ae53bce3
Update README.md 2023-05-15 06:51:08 -07:00
Paul Gauthier
dc255eed04 copy 2023-05-15 05:25:06 -07:00
Paul Gauthier
f344d26b3d copy 2023-05-14 21:45:34 -07:00
Paul Gauthier
aafd9f519d copy 2023-05-14 21:44:29 -07:00
Paul Gauthier
a31a29bca6 copy 2023-05-14 21:44:12 -07:00