Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion peak_assistant/streamlit/util/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
Loading