You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docs/core-abilities/metadata.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ By default, the first command that PR-Agent executes is [`describe`](../tools/de
24
24
These AI-generated outputs are now considered as part of the PR metadata, and can be used in subsequent commands like `review` and `improve`.
25
25
This effectively enables multi-stage chain-of-thought analysis, without doing any additional API calls which will cost time and money.
26
26
27
-
For example, when generating code suggestions for different files, PR-Agent can inject the AI-generated ["Changes walkthrough"](https://github.com/qodo-ai/pr-agent/pull/1202#issue-2511546839) file summary in the prompt:
27
+
For example, when generating code suggestions for different files, PR-Agent can inject the AI-generated ["Changes walkthrough"](https://github.com/the-pr-agent/pr-agent/pull/1202#issue-2511546839) file summary in the prompt:
Copy file name to clipboardExpand all lines: docs/docs/index.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Overview
2
2
3
-
[PR-Agent](https://github.com/qodo-ai/pr-agent) is an open-source, AI-powered code review agent and a community-maintained legacy project of Qodo. It is distinct from Qodo's primary AI code review offering, which provides a feature-rich, context-aware experience. Qodo now offers a free tier that integrates seamlessly with GitHub, GitLab, Bitbucket, and Azure DevOps for high-quality automated reviews.
3
+
[PR-Agent](https://github.com/the-pr-agent/pr-agent) is an open-source, AI-powered code review agent and a community-maintained legacy project of Qodo. It is distinct from Qodo's primary AI code review offering, which provides a feature-rich, context-aware experience. Qodo now offers a free tier that integrates seamlessly with GitHub, GitLab, Bitbucket, and Azure DevOps for high-quality automated reviews.
4
4
5
5
- See the [Installation Guide](./installation/index.md) for instructions on installing and running the tool on different git platforms.
6
6
@@ -14,7 +14,7 @@ To search the documentation site using natural language:
14
14
15
15
1) Comment `/help "your question"` in a pull request where PR-Agent is installed
16
16
17
-
2) The bot will respond with an [answer](https://github.com/qodo-ai/pr-agent/pull/1241#issuecomment-2365259334) that includes relevant documentation links.
17
+
2) The bot will respond with an [answer](https://github.com/the-pr-agent/pr-agent/pull/1241#issuecomment-2365259334) that includes relevant documentation links.
18
18
19
19
## Features
20
20
@@ -36,7 +36,7 @@ PR-Agent offers comprehensive pull request functionalities integrated with vario
Copy file name to clipboardExpand all lines: docs/docs/installation/azure.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,7 +63,7 @@ Note that you need to export the `azure_devops__pat` and `OPENAI_KEY` variables
63
63
64
64
Make sure to give pipeline permissions to the `pr_agent` variable group.
65
65
66
-
> Note that Azure Pipelines lacks support for triggering workflows from PR comments. If you find a viable solution, please contribute it to our [issue tracker](https://github.com/qodo-ai/pr-agent/issues)
66
+
> Note that Azure Pipelines lacks support for triggering workflows from PR comments. If you find a viable solution, please contribute it to our [issue tracker](https://github.com/the-pr-agent/pr-agent/issues)
67
67
68
68
### Azure Repos Git PR triggers and Build Validation
Copy file name to clipboardExpand all lines: docs/docs/installation/github.md
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ jobs:
23
23
steps:
24
24
- name: PR Agent action step
25
25
id: pragent
26
-
uses: qodo-ai/pr-agent@main
26
+
uses: the-pr-agent/pr-agent@main
27
27
env:
28
28
OPENAI_KEY: ${{ secrets.OPENAI_KEY }}
29
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -41,7 +41,7 @@ The GITHUB_TOKEN secret is automatically created by GitHub.
41
41
3) Merge this change to your main branch.
42
42
When you open your next PR, you should see a comment from `github-actions` bot with a review of your PR, and instructions on how to use the rest of the tools.
43
43
44
-
4) You may configure PR-Agent by adding environment variables under the env section corresponding to any configurable property in the [configuration](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml) file. Some examples:
44
+
4) You may configure PR-Agent by adding environment variables under the env section corresponding to any configurable property in the [configuration](https://github.com/the-pr-agent/pr-agent/blob/main/pr_agent/settings/configuration.toml) file. Some examples:
- Copy your app's private key to the private_key field.
566
566
- Copy your app's ID to the app_id field.
567
567
- Copy your app's webhook secret to the webhook_secret field.
568
-
- Set deployment_type to 'app' in [configuration.toml](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml)
568
+
- Set deployment_type to 'app' in [configuration.toml](https://github.com/the-pr-agent/pr-agent/blob/main/pr_agent/settings/configuration.toml)
569
569
570
570
> The .secrets.toml file is not copied to the Docker image by default, and is only used for local development.
571
571
> If you want to use the .secrets.toml file in your Docker image, you can add remove it from the .dockerignore file.
@@ -636,7 +636,7 @@ For example: `GITHUB.WEBHOOK_SECRET` --> `GITHUB__WEBHOOK_SECRET`
636
636
637
637
4. Create a lambda function that uses the uploaded image. Set the lambda timeout to be at least 3m.
638
638
5. Configure the lambda function to have a Function URL.
639
-
6. In the environment variables of the Lambda function, specify `AZURE_DEVOPS_CACHE_DIR` to a writable location such as /tmp. (see [link](https://github.com/qodo-ai/pr-agent/pull/450#issuecomment-1840242269))
639
+
6. In the environment variables of the Lambda function, specify `AZURE_DEVOPS_CACHE_DIR` to a writable location such as /tmp. (see [link](https://github.com/the-pr-agent/pr-agent/pull/450#issuecomment-1840242269))
640
640
7. Go back to steps 8-9 of [Method 5](#run-as-a-github-app) with the function url as your Webhook URL.
641
641
The Webhook URL would look like `https://<LAMBDA_FUNCTION_URL>/api/v1/github_webhooks`
5. Prepare variables and secrets. Skip this step if you plan on setting these as environment variables when running the agent:
@@ -116,7 +116,7 @@ For example: `GITLAB.PERSONAL_ACCESS_TOKEN` --> `GITLAB__PERSONAL_ACCESS_TOKEN`
116
116
117
117
4. Create a lambda function that uses the uploaded image. Set the lambda timeout to be at least 3m.
118
118
5. Configure the lambda function to have a Function URL.
119
-
6. In the environment variables of the Lambda function, specify `AZURE_DEVOPS_CACHE_DIR` to a writable location such as /tmp. (see [link](https://github.com/qodo-ai/pr-agent/pull/450#issuecomment-1840242269))
119
+
6. In the environment variables of the Lambda function, specify `AZURE_DEVOPS_CACHE_DIR` to a writable location such as /tmp. (see [link](https://github.com/the-pr-agent/pr-agent/pull/450#issuecomment-1840242269))
120
120
7. Go back to steps 8-9 of [Run a GitLab webhook server](#run-a-gitlab-webhook-server) with the function URL as your Webhook URL.
121
121
The Webhook URL would look like `https://<LAMBDA_FUNCTION_URL>/webhook`
Copy file name to clipboardExpand all lines: docs/docs/installation/locally.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ To invoke a tool (for example `review`), you can run PR-Agent directly from the
53
53
```
54
54
55
55
56
-
For other git providers, update `CONFIG.GIT_PROVIDER` accordingly and check the [`pr_agent/settings/.secrets_template.toml`](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/.secrets_template.toml) file for environment variables expected names and values.
56
+
For other git providers, update `CONFIG.GIT_PROVIDER` accordingly and check the [`pr_agent/settings/.secrets_template.toml`](https://github.com/the-pr-agent/pr-agent/blob/main/pr_agent/settings/.secrets_template.toml) file for environment variables expected names and values.
Copy file name to clipboardExpand all lines: docs/docs/tools/describe.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ This option is enabled by default via the `pr_description.enable_pr_diagram` par
118
118
</tr>
119
119
<tr>
120
120
<td><b>final_update_message</b></td>
121
-
<td>If set to true, it will add a comment message [`PR Description updated to latest commit...`](https://github.com/qodo-ai/pr-agent/pull/499#issuecomment-1837412176) after finishing calling `/describe`. Default is true.</td>
121
+
<td>If set to true, it will add a comment message [`PR Description updated to latest commit...`](https://github.com/the-pr-agent/pr-agent/pull/499#issuecomment-1837412176) after finishing calling `/describe`. Default is true.</td>
Copy file name to clipboardExpand all lines: docs/docs/tools/generate_labels.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ enable_custom_labels = true
33
33
34
34
### Defining custom labels
35
35
36
-
You can define your own custom labels in the `[custom_labels]` section. See the [custom_labels.toml](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/custom_labels.toml) file for examples.
36
+
You can define your own custom labels in the `[custom_labels]` section. See the [custom_labels.toml](https://github.com/the-pr-agent/pr-agent/blob/main/pr_agent/settings/custom_labels.toml) file for examples.
Copy file name to clipboardExpand all lines: docs/docs/tools/help_docs.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -100,7 +100,7 @@ When a new issue is opened, you should see a comment from `github-actions` bot w
100
100
101
101
## Configuration options
102
102
103
-
Under the section `pr_help_docs`, the [configuration file](https://github.com/qodo-ai/pr-agent/blob/main/pr_agent/settings/configuration.toml#L199) contains options to customize the 'help docs' tool:
103
+
Under the section `pr_help_docs`, the [configuration file](https://github.com/the-pr-agent/pr-agent/blob/main/pr_agent/settings/configuration.toml#L199) contains options to customize the 'help docs' tool:
104
104
105
105
- `repo_url`: If not overwritten, will use the repo from where the context came from (issue or PR), otherwise - use the given repo as context.
106
106
- `repo_default_branch`: The branch to use in case repo_url overwritten, otherwise - has no effect.
0 commit comments