Skip to content

Commit b4a5300

Browse files
committedAug 20, 2024
update workflow
1 parent 28f7ec1 commit b4a5300

File tree

2 files changed

+22
-5
lines changed

2 files changed

+22
-5
lines changed
 

‎README.md

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
This tool allows you to chat with your assistant locally in order to create a faster feedback loop for developers developing an assistant.
44
Debug mode is enabled by default so that you can see clearer information around what exactly is getting parsed successfully.
55

6-
The different SSE events in the [agent protocol](https://github.com/github-technology-partners/copilot-partners/blob/main/docs/sse-events.md) that the CLI gives debug output for are:
7-
1. [errors](https://github.com/github-technology-partners/copilot-partners/blob/c0b6be447b95d94fff6297bae820ea8cc6d36b87/docs/copilot-errors.md)
8-
2. [references](https://github.com/github-technology-partners/copilot-partners/blob/c0b6be447b95d94fff6297bae820ea8cc6d36b87/docs/references.md)
9-
3. [confirmations](https://github.com/github-technology-partners/copilot-partners/blob/c0b6be447b95d94fff6297bae820ea8cc6d36b87/docs/confirmations.md)
6+
The different SSE events in the [agent protocol](TODO) that the CLI gives debug output for are:
7+
1. [errors](TODO)
8+
2. [references](TODO)
9+
3. [confirmations](TODO)
1010

1111
> Note: This tool does not handle the payload verification process. To use this tool to validate your events, please temporarily disable payload verification for local testing and re-enable when completed.
1212
@@ -17,7 +17,7 @@ The different SSE events in the [agent protocol](https://github.com/github-techn
1717
```
1818
1. Install / upgrade extension
1919
```shell
20-
gh extension install github-technology-partners/gh-debug-cli
20+
gh extension install github.com/copilot-extensions/gh-debug-cli
2121
```
2222
1. See more info about the cli tool
2323
```shell
@@ -40,6 +40,7 @@ Flags:
4040
--url string url to chat with your agent (default "http://localhost:8080")
4141
--username string username to display in chat (default "sparklyunicorn")
4242
```
43+
> The token noted in the flag above is used to authenticate against the provided LLM. If you are using a different service, then this token is not needed. Generate the user-to-server token by [creating a GitHub Applicatiion](https://docs.github.com/en/apps/creating-github-apps/about-creating-github-apps/about-creating-github-apps) and then following the [using the device flow to generate a user access token](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/generating-a-user-access-token-for-a-github-app#using-the-device-flow-to-generate-a-user-access-token) to generate the token.
4344
2. You can alternatively set these flags as environment variables (in all caps) so you don't need to pass them in every time. The only "required" one to get this up and running is the url for your agent
4445
```
4546
export URL="http://localhost:8080/agent/blackbeard"

‎workflows/release.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: release
2+
on:
3+
push:
4+
tags:
5+
- "v*"
6+
permissions:
7+
contents: write
8+
9+
jobs:
10+
release:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: cli/gh-extension-precompile@v1
15+
with:
16+
go_version_file: go.mod

0 commit comments

Comments
 (0)
Failed to load comments.