|
1 | 1 | # Apache JMeter Copilot Chat Plugin |
2 | 2 |
|
3 | | -[](https://github.com/brunoborges/jmeter-copilot-chat/actions/workflows/build.yml) |
| 3 | +[](https://github.com/brunoborges/jmeter-copilot-extension/actions/workflows/build.yml) |
4 | 4 | [](https://openjdk.org/) |
5 | 5 | [](https://jmeter.apache.org/) |
6 | | -[](https://github.com/brunoborges/jmeter-copilot/blob/main/LICENSE) |
| 6 | +[](https://github.com/brunoborges/jmeter-copilot-extension/blob/main/LICENSE) |
7 | 7 |
|
8 | 8 | An Apache JMeter plugin that provides a GitHub Copilot Chat experience for generating JMeter test plans through natural language conversation. |
9 | 9 |
|
@@ -32,36 +32,36 @@ Download the latest release and install it to your JMeter installation with a si |
32 | 32 | Using `JMETER_HOME` environment variable: |
33 | 33 |
|
34 | 34 | ```bash |
35 | | -curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o $JMETER_HOME/lib/ext/jmeter-copilot-plugin.jar |
| 35 | +curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o $JMETER_HOME/lib/ext/jmeter-copilot-plugin.jar |
36 | 36 | ``` |
37 | 37 |
|
38 | 38 | Or specify the JMeter path directly: |
39 | 39 |
|
40 | 40 | ```bash |
41 | | -curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o /path/to/jmeter/lib/ext/jmeter-copilot-plugin.jar |
| 41 | +curl -sL $(curl -s https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest | grep "browser_download_url.*jar" | cut -d '"' -f 4) -o /path/to/jmeter/lib/ext/jmeter-copilot-plugin.jar |
42 | 42 | ``` |
43 | 43 |
|
44 | 44 | #### Windows (PowerShell) |
45 | 45 |
|
46 | 46 | Using `JMETER_HOME` environment variable: |
47 | 47 |
|
48 | 48 | ```powershell |
49 | | -$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot/releases/latest" |
| 49 | +$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest" |
50 | 50 | $jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url |
51 | 51 | Invoke-WebRequest -Uri $jarUrl -OutFile "$env:JMETER_HOME\lib\ext\jmeter-copilot-plugin.jar" |
52 | 52 | ``` |
53 | 53 |
|
54 | 54 | Or specify the JMeter path directly: |
55 | 55 |
|
56 | 56 | ```powershell |
57 | | -$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot/releases/latest" |
| 57 | +$release = Invoke-RestMethod -Uri "https://api.github.com/repos/brunoborges/jmeter-copilot-extension/releases/latest" |
58 | 58 | $jarUrl = ($release.assets | Where-Object { $_.name -like "*.jar" }).browser_download_url |
59 | 59 | Invoke-WebRequest -Uri $jarUrl -OutFile "C:\path\to\jmeter\lib\ext\jmeter-copilot-plugin.jar" |
60 | 60 | ``` |
61 | 61 |
|
62 | 62 | ### Manual Installation |
63 | 63 |
|
64 | | -1. Download the latest JAR from [GitHub Releases](https://github.com/brunoborges/jmeter-copilot/releases/latest) |
| 64 | +1. Download the latest JAR from [GitHub Releases](https://github.com/brunoborges/jmeter-copilot-extension/releases/latest) |
65 | 65 | 2. Copy the JAR file to your JMeter `lib/ext` directory |
66 | 66 | 3. Restart JMeter |
67 | 67 |
|
@@ -118,7 +118,7 @@ mvn install -Pinstall-to-jmeter -Djmeter.home=/path/to/jmeter |
118 | 118 |
|
119 | 119 | The plugin supports multiple AI models through the Copilot SDK: |
120 | 120 |
|
121 | | -- `claude-sonnet-4.5` (default) |
| 121 | +- `claude-sonnet-4` (default) |
122 | 122 | - `gpt-4.1` |
123 | 123 | - `claude-4-opus` |
124 | 124 | - `gpt-4.1-mini` |
|
0 commit comments