Skip to content

Commit bb5eaa8

Browse files
Copilotjoshspicer
andauthored
Add version 'v0' to API endpoint for remote agent jobs (#7108)
* Initial plan * Add version 'v0' to API endpoint for remote agent jobs Co-authored-by: joshspicer <23246594+joshspicer@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: joshspicer <23246594+joshspicer@users.noreply.github.com>
1 parent 330fc12 commit bb5eaa8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/github/copilotApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class CopilotApi {
4444
payload: RemoteAgentJobPayload,
4545
): Promise<RemoteAgentJobResponse> {
4646
const repoSlug = `${owner}/${name}`;
47-
const apiUrl = `${this.baseUrl}/agents/swe/jobs/${repoSlug}`;
47+
const apiUrl = `${this.baseUrl}/agents/swe/v0/jobs/${repoSlug}`;
4848
const response = await fetch(apiUrl, {
4949
method: 'POST',
5050
headers: {

0 commit comments

Comments
 (0)