From d7b694461d8a41e5b4fd113588aa9d5b676706d8 Mon Sep 17 00:00:00 2001 From: "David J. Bianco" Date: Mon, 1 Jun 2026 12:41:05 -0400 Subject: [PATCH] Update repository ownership references --- CODE_OF_CONDUCT.md | 7 +++---- CONTRIBUTING.md | 2 +- Makefile | 4 ++-- README.md | 6 +++--- peak_assistant/streamlit/util/helpers.py | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 7a0997b..b96fa1a 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -58,10 +58,9 @@ representative at an online or offline event. ## Enforcement -Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported to the community leaders responsible for enforcement at -[Foundation AI OSS](mailto:foundation-ai-oss@cisco.com) mailbox. All complaints will be reviewed and investigated -promptly and fairly. +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the Talos +maintainers responsible for enforcement at talos-external@cisco.com. All complaints will be reviewed and +investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the reporter of any incident. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 9865690..869f58f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -18,7 +18,7 @@ in any real-time space e.g., Slack, Discord, etc. Before reporting a new issue, please ensure that the issue was not already reported or fixed by searching through our [issues -list](https://github.com/cisco-foundation-ai/PEAK-Assistant/issues). +list](https://github.com/Cisco-Talos/PEAK-Assistant/issues). When creating a new issue, please be sure to include a **title and clear description**, as much relevant information as possible, and, if possible, a diff --git a/Makefile b/Makefile index 0587e38..fab8169 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ coverage-html: coverage DOCKER_TAG := $(shell git branch --show-current | tr -c '[:alnum:]._-' '-') container-local: - docker buildx build -t ghcr.io/cisco-foundation-ai/peak-assistant:$(DOCKER_TAG) --load . + docker buildx build -t ghcr.io/cisco-talos/peak-assistant:$(DOCKER_TAG) --load . .PHONY: container-run @@ -58,4 +58,4 @@ container-run: container-local --mount "type=bind,src=$(PWD)/.env,target=/home/peakassistant/.env" \ --mount "type=bind,src=$(PWD)/mcp_servers.json,target=/home/peakassistant/mcp_servers.json" \ -p "127.0.0.1:8501:8501" \ - ghcr.io/cisco-foundation-ai/peak-assistant:$(DOCKER_TAG) + ghcr.io/cisco-talos/peak-assistant:$(DOCKER_TAG) diff --git a/README.md b/README.md index 8613c40..3738a63 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ The PEAK Assistant web app offers the following features: ## Setting up the Python Environment Clone the GitHub repo to a directory on your local system: ```bash -git clone https://github.com/cisco-foundation-ai/PEAK-Assistant +git clone https://github.com/Cisco-Talos/PEAK-Assistant cd PEAK-Assistant ``` @@ -285,7 +285,7 @@ The PEAK Assistant can be run in a Docker container. To do this, you will need t The project provides pre-built Docker images, which can be downloaded by running the following command: ```bash -docker pull ghcr.io/cisco-foundation-ai/peak-assistant:latest +docker pull ghcr.io/cisco-talos/peak-assistant:latest ``` ### 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 --mount "type=bind,src=$(PWD)/model_config.json,target=/home/peakassistant/model_config.json" \ --mount "type=bind,src=$(PWD)/mcp_servers.json,target=/home/peakassistant/mcp_servers.json" \ -p "127.0.0.1:8501:8501" \ - ghcr.io/cisco-foundation-ai/peak-assistant:latest + ghcr.io/cisco-talos/peak-assistant:latest ``` Note that you will still need to provide the same configuration files as you would if you were running the app natively: diff --git a/peak_assistant/streamlit/util/helpers.py b/peak_assistant/streamlit/util/helpers.py index f25ddd4..bdcf350 100644 --- a/peak_assistant/streamlit/util/helpers.py +++ b/peak_assistant/streamlit/util/helpers.py @@ -969,7 +969,7 @@ def perform_dynamic_client_registration(server_url: str) -> Optional[Dict[str, s # Client registration payload registration_data = { "client_name": "PEAK Assistant", - "client_uri": "https://github.com/cisco-foundation-ai/PEAK-Assistant", + "client_uri": "https://github.com/Cisco-Talos/PEAK-Assistant", "redirect_uris": [get_streamlit_redirect_uri()], "grant_types": ["authorization_code"], "response_types": ["code"],