Skip to content

Commit dfabbb0

Browse files
authored
Merge pull request #92 from Cisco-Talos/dev
Update repository ownership references
2 parents d761ed4 + d7b6944 commit dfabbb0

5 files changed

Lines changed: 10 additions & 11 deletions

File tree

CODE_OF_CONDUCT.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@ representative at an online or offline event.
5858

5959
## Enforcement
6060

61-
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62-
reported to the community leaders responsible for enforcement at
63-
[Foundation AI OSS](mailto:foundation-ai-oss@cisco.com) mailbox. All complaints will be reviewed and investigated
64-
promptly and fairly.
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the Talos
62+
maintainers responsible for enforcement at talos-external@cisco.com. All complaints will be reviewed and
63+
investigated promptly and fairly.
6564

6665
All community leaders are obligated to respect the privacy and security of the
6766
reporter of any incident.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ in any real-time space e.g., Slack, Discord, etc.
1818

1919
Before reporting a new issue, please ensure that the issue was not already
2020
reported or fixed by searching through our [issues
21-
list](https://github.com/cisco-foundation-ai/PEAK-Assistant/issues).
21+
list](https://github.com/Cisco-Talos/PEAK-Assistant/issues).
2222

2323
When creating a new issue, please be sure to include a **title and clear
2424
description**, as much relevant information as possible, and, if possible, a

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ coverage-html: coverage
4646
DOCKER_TAG := $(shell git branch --show-current | tr -c '[:alnum:]._-' '-')
4747

4848
container-local:
49-
docker buildx build -t ghcr.io/cisco-foundation-ai/peak-assistant:$(DOCKER_TAG) --load .
49+
docker buildx build -t ghcr.io/cisco-talos/peak-assistant:$(DOCKER_TAG) --load .
5050

5151

5252
.PHONY: container-run
@@ -58,4 +58,4 @@ container-run: container-local
5858
--mount "type=bind,src=$(PWD)/.env,target=/home/peakassistant/.env" \
5959
--mount "type=bind,src=$(PWD)/mcp_servers.json,target=/home/peakassistant/mcp_servers.json" \
6060
-p "127.0.0.1:8501:8501" \
61-
ghcr.io/cisco-foundation-ai/peak-assistant:$(DOCKER_TAG)
61+
ghcr.io/cisco-talos/peak-assistant:$(DOCKER_TAG)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The PEAK Assistant web app offers the following features:
2222
## Setting up the Python Environment
2323
Clone the GitHub repo to a directory on your local system:
2424
```bash
25-
git clone https://github.com/cisco-foundation-ai/PEAK-Assistant
25+
git clone https://github.com/Cisco-Talos/PEAK-Assistant
2626
cd PEAK-Assistant
2727
```
2828

@@ -285,7 +285,7 @@ The PEAK Assistant can be run in a Docker container. To do this, you will need t
285285
The project provides pre-built Docker images, which can be downloaded by running the following command:
286286

287287
```bash
288-
docker pull ghcr.io/cisco-foundation-ai/peak-assistant:latest
288+
docker pull ghcr.io/cisco-talos/peak-assistant:latest
289289
```
290290

291291
### Building the Docker image from source
@@ -309,7 +309,7 @@ Once you have the image downloaded, you can run the container by running the fol
309309
--mount "type=bind,src=$(PWD)/model_config.json,target=/home/peakassistant/model_config.json" \
310310
--mount "type=bind,src=$(PWD)/mcp_servers.json,target=/home/peakassistant/mcp_servers.json" \
311311
-p "127.0.0.1:8501:8501" \
312-
ghcr.io/cisco-foundation-ai/peak-assistant:latest
312+
ghcr.io/cisco-talos/peak-assistant:latest
313313
```
314314

315315
Note that you will still need to provide the same configuration files as you would if you were running the app natively:

peak_assistant/streamlit/util/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ def perform_dynamic_client_registration(server_url: str) -> Optional[Dict[str, s
969969
# Client registration payload
970970
registration_data = {
971971
"client_name": "PEAK Assistant",
972-
"client_uri": "https://github.com/cisco-foundation-ai/PEAK-Assistant",
972+
"client_uri": "https://github.com/Cisco-Talos/PEAK-Assistant",
973973
"redirect_uris": [get_streamlit_redirect_uri()],
974974
"grant_types": ["authorization_code"],
975975
"response_types": ["code"],

0 commit comments

Comments
 (0)