risk-atlas-nexus


Namerisk-atlas-nexus JSON
Version 1.0.0 PyPI version JSON
download
home_pageNone
SummaryRisk Atlas Nexus provides tooling to help bring together disparate resources related to governance of foundation models.
upload_time2025-07-15 08:28:41
maintainerNone
docs_urlNone
authorNone
requires_python<3.12.5,>=3.11
licenseNone
keywords ai risks ai safety ai governance risk taxonomies risk identification risk detection ai task identification ai risk management ai risk questionnaire ai systems modelling knowledge graph chain of thought
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Risk Atlas Nexus

<img src="https://github.com/IBM/risk-atlas-nexus/blob/main/resources/images/risk_atlas_nexus_vector.svg?raw=true" width="200">

[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://www.apache.org/licenses/LICENSE-2.0) ![main branch](https://github.com/IBM/risk-atlas-nexus/actions/workflows/pages/pages-build-deployment/badge.svg?branch=main) [![](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/) <img alt="Code style: black" src="https://img.shields.io/badge/code%20style-black-000000.svg"></a>

👉 (Jun-2025) Our [HF spaces demo site](https://huggingface.co/spaces/ibm/risk-atlas-nexus) has been updated to show related benchmarks!

👉 (Jun-2025) The [demo projects repository](https://github.com/ibm/risk-atlas-nexus-demos) showcases implementations of Risk Atlas Nexus.

## Overview

Risk Atlas Nexus aims to provide tooling to help bring together resources related to governance of foundation models. We support a community-driven approach to curating and cataloguing resources such as datasets, benchmarks and mitigations. Our goal is to turn abstract risk definitions into actionable workflows that streamline AI governance processes. By connecting fragmented resources, Risk Atlas Nexus seeks to fill a critical gap in AI governance, enabling stakeholders to build more robust, transparent, and accountable systems. Risk Atlas Nexus builds on the [IBM AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas) making this educational resource a nexus of governance assets and tooling. An AI System's Knowledge Graph is used to provide a unified structure that links and contextualize the very heterogeneous domain data.

Our intention is to create a starting point for an open AI Systems ontology whose focus is on risk and that the community can extend and enhance. This ontology serves as the foundation that unifies innovation and tooling in the AI risk space. By lowering the barrier to entry for developers, it fosters a governance-first approach to AI solutions, while also inviting the broader community to contribute their own tools and methodologies to expand its impact.

## Features

- 🏗️ An ontology has been provided, that combines the AI risk view (taxonomies, risks, actions) with an AI model view (AI systems, AI models, model evaluations) into one coherent schema
- 📚 AI Risks were collected from IBM AI Risk Atlas, IBM Granite Guardian, MIT AI Risk Repository, NIST Artificial Intelligence Risk Management Framework: Generative Artificial Intelligence Profile, the AI Risk Taxonomy (AIR 2024), the AILuminate Benchmark, Credo's Unified Control Framework, and OWASP Top 10 for Large Language Model Applications
- 🔗 Mappings are proposed between the taxonomies and between risks and actions
- 🐍 Use the python library methods to quickly explore available risks, relations and actions
- 🚨 Use the python library methods to detect potential risks in your usecase
- 📤 Download an exported graph populated with data instances
- ✨ Example use-case of auto-assistance in compliance questionnaires using CoT examples and Risk Atlas Nexus
- 🔧 Tooling to convert the LinkML schema and instance data into a Cypher representation to populate a graph database

## Architecture

![Architecture](https://github.com/IBM/risk-atlas-nexus/blob/main/resources/images/architecture.png?raw=true)

## Links

- **AI Risk Ontology**
  - [LinkML schema documentation](docs/ontology/index.md)
  - [LinkML instance data for an example knowledge graph](https://github.com/IBM/risk-atlas-nexus/blob/main/src/risk_atlas_nexus/data/knowledge_graph/README.md)
  - [Download a populated graph](https://github.com/IBM/risk-atlas-nexus/blob/main/graph_export/README.md)
  - [Contribute your own taxonomy files and CoT templates](docs/concepts/Contributing_a_taxonomy.md)
- **Notebooks:**
  - [Risk Atlas Nexus Quickstart](docs/examples/notebooks/Risk_Atlas_Nexus_Quickstart.ipynb) Overview of library functionality
  - [Risk identification](docs/examples/notebooks/risk_identification.ipynb) Uncover risks related to your usecase
  - [Auto assist questionnaire](docs/examples/notebooks/autoassist_questionnaire.ipynb) Auto-fill questionnaire using Chain of Thought or Few-Shot Examples
  - [AI Tasks identification](docs/examples/notebooks/ai_tasks_identification.ipynb) Uncover ai tasks related to your usecase
  - [AI Domain identification](docs/examples/notebooks/domain_identification.ipynb) Uncover ai domain from your usecase
  - [Risk Categorization](docs/examples/notebooks/risk_categorization.ipynb) Assess and categorize the severity of risks associated with an AI system usecase.
- **Additional Resources:**
  - [IBM AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas)
  - [Usage Governance Advisor: From Intent to AI Governance](https://arxiv.org/abs/2412.01957)

## Installation

This project targets python version ">=3.11, <3.12". You can download specific versions of python here: https://www.python.org/downloads/

**Note:** Replace `INFERENCE_LIB` with one of the LLM inference library [ollama, vllm, wml, rits] as explained [here](#install-for-inference-apis)

To install the current release
```
pip install risk-atlas-nexus[INFERENCE_LIB]
```

To install the latest code
```
git clone git@github.com:IBM/risk-atlas-nexus.git
cd risk-atlas-nexus
python -m venv vrisk-atlas-nexus
source vrisk-atlas-nexus/bin/activate
pip install -e ".[INFERENCE_LIB]"
```

### Install for inference APIs

Risk Atlas Nexus uses Large Language Models (LLMs) to infer risks and risks data. Therefore, requires access to LLMs to inference or call the model. The following LLM inference APIs are supported:

- [IBM Watsonx AI](https://www.ibm.com/products/watsonx-ai) (Watson Machine Learning)
- [Ollama](https://ollama.com/)
- [vLLM](https://docs.vllm.ai/en/latest/)
- [RITS](https://rits.fmaas.res.ibm.com) (IBM Internal Only)

#### IBM Watsonx AI (WML)

When using the WML platform, you need to:

1. Add configuration to `.env` file as follows. Please follow this [documentation](https://dataplatform.cloud.ibm.com/docs/content/wsj/analyze-data/fm-credentials.html?context=wx&locale=en) on obtaining WML credentials.

```yaml
WML_API_KEY=<WML api key goes here>
WML_API_URL=<WML url key goes here>
WML_PROJECT_ID=<WML project id goes here, Optional>
WML_SPACE_ID=<WML space id goes here, Optional>
```

Either 'WML_PROJECT_ID' or 'WML_SPACE_ID' need to be specified.

2. Install WML dependencies as follows:

```command
pip install -e ".[wml]"
```

#### Ollama

When using the Ollama inference, you need to:

1. Install Ollama dependencies as follows:

```command
pip install -e ".[ollama]"
```

2. Please follow the [quickstart](https://github.com/ollama/ollama/blob/main/README.md#ollama) guide to start Ollama LLM server. Server will start by default at http://localhost:11434

3. When selecting Ollama engine in Risk Atlas Nexus, use the server address `localhost:11434` as the `api_url` in the credentials or set the environment variable `OLLAMA_API_URL` with this value.

#### vLLM

When using the vLLM inference, you need to:

1. For Mac users, follow the instuctions [here](https://docs.vllm.ai/en/stable/getting_started/installation/cpu/index.html?device=apple). Users need to build from the source vLLM to natively run on macOS.

2. For Linux users, install vLLM dependencies as follows:

```command
pip install -e ".[vllm]"
```

Above package is enough to run vLLM in once-off offline mode. When selecting vLLM execution from Risk Atlas Nexus, `credentials` should be passed as `None` to use vLLM offline mode.

3. (Optional) To run vLLM on an OpenAI-Compatible vLLM Server, execute the command:

```command
vllm serve ibm-granite/granite-3.1-8b-instruct --max_model_len 4096 --host localhost --port 8000 --api-key <CUSTOM_API_KEY>
```

The CUSTOM_API_KEY can be any string that you choose to use as your API key. Above command will start vLLM server at http://localhost:8000. The server currently hosts one model at a time. Check all supported APIs at `http://localhost:8000/docs`

**Note:** When selecting vLLM engine in Risk Atlas Nexus, pass `api_url` as `host:port` and given `api_key` to `credentials` with values from the vllm serve command above.

#### RITS (IBM Internal Only)

When using the RITS platform, you need to:

1. Add configuration to `.env` file as follows:

```yaml
RITS_API_KEY=<RITS api key goes here>
RITS_API_URL=<RITS url key goes here>
```

2. Install RITS dependencies as follows:

```command
pip install -e ".[rits]"
```

## Compatibility

- View the [releases changelog](https://github.com/IBM/risk-atlas-nexus/releases).

## Referencing the project

If you use Risk Atlas Nexus in your projects, please consider citing the following:

```bib
@article{airiskatlas2025,
      title={AI Risk Atlas: Taxonomy and Tooling for Navigating AI Risks and Resources},
      author={Frank Bagehorn and Kristina Brimijoin and Elizabeth M. Daly and Jessica He and Michael Hind and Luis Garces-Erice and Christopher Giblin and Ioana Giurgiu and Jacquelyn Martino and Rahul Nair and David Piorkowski and Ambrish Rawat and John Richards and Sean Rooney and Dhaval Salwala and Seshu Tirupathi and Peter Urbanetz and Kush R. Varshney and Inge Vejsbjerg and Mira L. Wolf-Bauwens},
      year={2025},
      eprint={2503.05780},
      archivePrefix={arXiv},
      primaryClass={cs.CY},
      url={https://arxiv.org/abs/2503.05780}
}
```

## License

Risk Atlas Nexus is provided under Apache 2.0 license.

## Contributing

- Get started by checking our [contribution guidelines](CONTRIBUTING.md).
- Read the wiki for more technical and design details.
- If you have any questions, just ask!
- [Contribute your own taxonomy files and CoT templates](docs/concepts/Contributing_a_taxonomy.md)

Tip: Use the makefile provided to regenerate artifacts provided in the repository by running `make` in this repository.

## Find out more

- Try out a quick demo at the [HF spaces demo site](https://huggingface.co/spaces/ibm/risk-atlas-nexus)
- Read the publication [AI Risk Atlas: Taxonomy and Tooling for Navigating AI Risks and Resources](https://arxiv.org/pdf/2503.05780)
- Explore [IBM's AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas) on the IBM documentation site
- View the [demo projects repository](https://github.com/ibm/risk-atlas-nexus-demos) showcasing implementations of Risk Atlas Nexus.
- Read the the IBM AI Ethics Board publication [Foundation models: Opportunities, risks and mitigations](https://www.ibm.com/downloads/documents/us-en/10a99803d8afd656) which goes into more detail about the risk taxonomy, and describes the point of view of IBM on the ethics of foundation models.
- ['Usage Governance Advisor: From Intent to AI Governance'](https://arxiv.org/abs/2412.01957) presents a system for semi-structured governance information, identifying and prioritising risks according to the intended use case, recommending appropriate benchmarks and risk assessments and proposing mitigation strategies and actions.

## IBM ❤️ Open Source AI

Risk Atlas Nexus has been brought to you by IBM.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "risk-atlas-nexus",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<3.12.5,>=3.11",
    "maintainer_email": null,
    "keywords": "ai risks, ai safety, ai governance, risk taxonomies, risk identification, risk detection, ai task identification, ai risk management, ai risk questionnaire, ai systems modelling, knowledge graph, chain of thought",
    "author": null,
    "author_email": "Risk Atlas Nexus <risk-atlas-nexus@ibm.com>, Elizabeth Daly <elizabeth.daly@ie.ibm.com>, Dhaval Salwala <dhaval.vinodbhai.salwala@ibm.com>, Frank Bagehorn <fba@zurich.ibm.com>, Luis Garces-Erice <lga@zurich.ibm.com>, Sean Rooney <sro@zurich.ibm.com>, Inge Vejsbjerg <ingevejs@ie.ibm.com>",
    "download_url": "https://files.pythonhosted.org/packages/fd/34/9751ed82450fef1e83d25d226f1bc5e2f09a35769f7889b7e98f61710750/risk_atlas_nexus-1.0.0.tar.gz",
    "platform": null,
    "description": "# Risk Atlas Nexus\n\n<img src=\"https://github.com/IBM/risk-atlas-nexus/blob/main/resources/images/risk_atlas_nexus_vector.svg?raw=true\" width=\"200\">\n\n[![License: Apache 2.0](https://img.shields.io/badge/License-Apache%202.0-yellow.svg)](https://www.apache.org/licenses/LICENSE-2.0) ![main branch](https://github.com/IBM/risk-atlas-nexus/actions/workflows/pages/pages-build-deployment/badge.svg?branch=main) [![](https://img.shields.io/badge/python-3.11-blue.svg)](https://www.python.org/downloads/) <img alt=\"Code style: black\" src=\"https://img.shields.io/badge/code%20style-black-000000.svg\"></a>\n\n\ud83d\udc49 (Jun-2025) Our [HF spaces demo site](https://huggingface.co/spaces/ibm/risk-atlas-nexus) has been updated to show related benchmarks!\n\n\ud83d\udc49 (Jun-2025) The [demo projects repository](https://github.com/ibm/risk-atlas-nexus-demos) showcases implementations of Risk Atlas Nexus.\n\n## Overview\n\nRisk Atlas Nexus aims to provide tooling to help bring together resources related to governance of foundation models. We support a community-driven approach to curating and cataloguing resources such as datasets, benchmarks and mitigations. Our goal is to turn abstract risk definitions into actionable workflows that streamline AI governance processes. By connecting fragmented resources, Risk Atlas Nexus seeks to fill a critical gap in AI governance, enabling stakeholders to build more robust, transparent, and accountable systems. Risk Atlas Nexus builds on the [IBM AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas) making this educational resource a nexus of governance assets and tooling. An AI System's Knowledge Graph is used to provide a unified structure that links and contextualize the very heterogeneous domain data.\n\nOur intention is to create a starting point for an open AI Systems ontology whose focus is on risk and that the community can extend and enhance. This ontology serves as the foundation that unifies innovation and tooling in the AI risk space. By lowering the barrier to entry for developers, it fosters a governance-first approach to AI solutions, while also inviting the broader community to contribute their own tools and methodologies to expand its impact.\n\n## Features\n\n- \ud83c\udfd7\ufe0f An ontology has been provided, that combines the AI risk view (taxonomies, risks, actions) with an AI model view (AI systems, AI models, model evaluations) into one coherent schema\n- \ud83d\udcda AI Risks were collected from IBM AI Risk Atlas, IBM Granite Guardian, MIT AI Risk Repository, NIST Artificial Intelligence Risk Management Framework: Generative Artificial Intelligence Profile, the AI Risk Taxonomy (AIR 2024), the AILuminate Benchmark, Credo's Unified Control Framework, and OWASP Top 10 for Large Language Model Applications\n- \ud83d\udd17 Mappings are proposed between the taxonomies and between risks and actions\n- \ud83d\udc0d Use the python library methods to quickly explore available risks, relations and actions\n- \ud83d\udea8 Use the python library methods to detect potential risks in your usecase\n- \ud83d\udce4 Download an exported graph populated with data instances\n- \u2728 Example use-case of auto-assistance in compliance questionnaires using CoT examples and Risk Atlas Nexus\n- \ud83d\udd27 Tooling to convert the LinkML schema and instance data into a Cypher representation to populate a graph database\n\n## Architecture\n\n![Architecture](https://github.com/IBM/risk-atlas-nexus/blob/main/resources/images/architecture.png?raw=true)\n\n## Links\n\n- **AI Risk Ontology**\n  - [LinkML schema documentation](docs/ontology/index.md)\n  - [LinkML instance data for an example knowledge graph](https://github.com/IBM/risk-atlas-nexus/blob/main/src/risk_atlas_nexus/data/knowledge_graph/README.md)\n  - [Download a populated graph](https://github.com/IBM/risk-atlas-nexus/blob/main/graph_export/README.md)\n  - [Contribute your own taxonomy files and CoT templates](docs/concepts/Contributing_a_taxonomy.md)\n- **Notebooks:**\n  - [Risk Atlas Nexus Quickstart](docs/examples/notebooks/Risk_Atlas_Nexus_Quickstart.ipynb) Overview of library functionality\n  - [Risk identification](docs/examples/notebooks/risk_identification.ipynb) Uncover risks related to your usecase\n  - [Auto assist questionnaire](docs/examples/notebooks/autoassist_questionnaire.ipynb) Auto-fill questionnaire using Chain of Thought or Few-Shot Examples\n  - [AI Tasks identification](docs/examples/notebooks/ai_tasks_identification.ipynb) Uncover ai tasks related to your usecase\n  - [AI Domain identification](docs/examples/notebooks/domain_identification.ipynb) Uncover ai domain from your usecase\n  - [Risk Categorization](docs/examples/notebooks/risk_categorization.ipynb) Assess and categorize the severity of risks associated with an AI system usecase.\n- **Additional Resources:**\n  - [IBM AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas)\n  - [Usage Governance Advisor: From Intent to AI Governance](https://arxiv.org/abs/2412.01957)\n\n## Installation\n\nThis project targets python version \">=3.11, <3.12\". You can download specific versions of python here: https://www.python.org/downloads/\n\n**Note:** Replace `INFERENCE_LIB` with one of the LLM inference library [ollama, vllm, wml, rits] as explained [here](#install-for-inference-apis)\n\nTo install the current release\n```\npip install risk-atlas-nexus[INFERENCE_LIB]\n```\n\nTo install the latest code\n```\ngit clone git@github.com:IBM/risk-atlas-nexus.git\ncd risk-atlas-nexus\npython -m venv vrisk-atlas-nexus\nsource vrisk-atlas-nexus/bin/activate\npip install -e \".[INFERENCE_LIB]\"\n```\n\n### Install for inference APIs\n\nRisk Atlas Nexus uses Large Language Models (LLMs) to infer risks and risks data. Therefore, requires access to LLMs to inference or call the model. The following LLM inference APIs are supported:\n\n- [IBM Watsonx AI](https://www.ibm.com/products/watsonx-ai) (Watson Machine Learning)\n- [Ollama](https://ollama.com/)\n- [vLLM](https://docs.vllm.ai/en/latest/)\n- [RITS](https://rits.fmaas.res.ibm.com) (IBM Internal Only)\n\n#### IBM Watsonx AI (WML)\n\nWhen using the WML platform, you need to:\n\n1. Add configuration to `.env` file as follows. Please follow this [documentation](https://dataplatform.cloud.ibm.com/docs/content/wsj/analyze-data/fm-credentials.html?context=wx&locale=en) on obtaining WML credentials.\n\n```yaml\nWML_API_KEY=<WML api key goes here>\nWML_API_URL=<WML url key goes here>\nWML_PROJECT_ID=<WML project id goes here, Optional>\nWML_SPACE_ID=<WML space id goes here, Optional>\n```\n\nEither 'WML_PROJECT_ID' or 'WML_SPACE_ID' need to be specified.\n\n2. Install WML dependencies as follows:\n\n```command\npip install -e \".[wml]\"\n```\n\n#### Ollama\n\nWhen using the Ollama inference, you need to:\n\n1. Install Ollama dependencies as follows:\n\n```command\npip install -e \".[ollama]\"\n```\n\n2. Please follow the [quickstart](https://github.com/ollama/ollama/blob/main/README.md#ollama) guide to start Ollama LLM server. Server will start by default at http://localhost:11434\n\n3. When selecting Ollama engine in Risk Atlas Nexus, use the server address `localhost:11434` as the `api_url` in the credentials or set the environment variable `OLLAMA_API_URL` with this value.\n\n#### vLLM\n\nWhen using the vLLM inference, you need to:\n\n1. For Mac users, follow the instuctions [here](https://docs.vllm.ai/en/stable/getting_started/installation/cpu/index.html?device=apple). Users need to build from the source vLLM to natively run on macOS.\n\n2. For Linux users, install vLLM dependencies as follows:\n\n```command\npip install -e \".[vllm]\"\n```\n\nAbove package is enough to run vLLM in once-off offline mode. When selecting vLLM execution from Risk Atlas Nexus, `credentials` should be passed as `None` to use vLLM offline mode.\n\n3. (Optional) To run vLLM on an OpenAI-Compatible vLLM Server, execute the command:\n\n```command\nvllm serve ibm-granite/granite-3.1-8b-instruct --max_model_len 4096 --host localhost --port 8000 --api-key <CUSTOM_API_KEY>\n```\n\nThe CUSTOM_API_KEY can be any string that you choose to use as your API key. Above command will start vLLM server at http://localhost:8000. The server currently hosts one model at a time. Check all supported APIs at `http://localhost:8000/docs`\n\n**Note:** When selecting vLLM engine in Risk Atlas Nexus, pass `api_url` as `host:port` and given `api_key` to `credentials` with values from the vllm serve command above.\n\n#### RITS (IBM Internal Only)\n\nWhen using the RITS platform, you need to:\n\n1. Add configuration to `.env` file as follows:\n\n```yaml\nRITS_API_KEY=<RITS api key goes here>\nRITS_API_URL=<RITS url key goes here>\n```\n\n2. Install RITS dependencies as follows:\n\n```command\npip install -e \".[rits]\"\n```\n\n## Compatibility\n\n- View the [releases changelog](https://github.com/IBM/risk-atlas-nexus/releases).\n\n## Referencing the project\n\nIf you use Risk Atlas Nexus in your projects, please consider citing the following:\n\n```bib\n@article{airiskatlas2025,\n      title={AI Risk Atlas: Taxonomy and Tooling for Navigating AI Risks and Resources},\n      author={Frank Bagehorn and Kristina Brimijoin and Elizabeth M. Daly and Jessica He and Michael Hind and Luis Garces-Erice and Christopher Giblin and Ioana Giurgiu and Jacquelyn Martino and Rahul Nair and David Piorkowski and Ambrish Rawat and John Richards and Sean Rooney and Dhaval Salwala and Seshu Tirupathi and Peter Urbanetz and Kush R. Varshney and Inge Vejsbjerg and Mira L. Wolf-Bauwens},\n      year={2025},\n      eprint={2503.05780},\n      archivePrefix={arXiv},\n      primaryClass={cs.CY},\n      url={https://arxiv.org/abs/2503.05780}\n}\n```\n\n## License\n\nRisk Atlas Nexus is provided under Apache 2.0 license.\n\n## Contributing\n\n- Get started by checking our [contribution guidelines](CONTRIBUTING.md).\n- Read the wiki for more technical and design details.\n- If you have any questions, just ask!\n- [Contribute your own taxonomy files and CoT templates](docs/concepts/Contributing_a_taxonomy.md)\n\nTip: Use the makefile provided to regenerate artifacts provided in the repository by running `make` in this repository.\n\n## Find out more\n\n- Try out a quick demo at the [HF spaces demo site](https://huggingface.co/spaces/ibm/risk-atlas-nexus)\n- Read the publication [AI Risk Atlas: Taxonomy and Tooling for Navigating AI Risks and Resources](https://arxiv.org/pdf/2503.05780)\n- Explore [IBM's AI Risk Atlas](https://www.ibm.com/docs/en/watsonx/saas?topic=ai-risk-atlas) on the IBM documentation site\n- View the [demo projects repository](https://github.com/ibm/risk-atlas-nexus-demos) showcasing implementations of Risk Atlas Nexus.\n- Read the the IBM AI Ethics Board publication [Foundation models: Opportunities, risks and mitigations](https://www.ibm.com/downloads/documents/us-en/10a99803d8afd656) which goes into more detail about the risk taxonomy, and describes the point of view of IBM on the ethics of foundation models.\n- ['Usage Governance Advisor: From Intent to AI Governance'](https://arxiv.org/abs/2412.01957) presents a system for semi-structured governance information, identifying and prioritising risks according to the intended use case, recommending appropriate benchmarks and risk assessments and proposing mitigation strategies and actions.\n\n## IBM \u2764\ufe0f Open Source AI\n\nRisk Atlas Nexus has been brought to you by IBM.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Risk Atlas Nexus provides tooling to help bring together disparate resources related to governance of foundation models. ",
    "version": "1.0.0",
    "project_urls": {
        "Changelog": "https://github.com/IBM/risk-atlas-nexus/blob/main/CHANGELOG.md",
        "Documentation": "https://ibm.github.io/risk-atlas-nexus/",
        "Homepage": "https://github.com/IBM/risk-atlas-nexus",
        "Issues": "https://github.com/IBM/risk-atlas-nexus/issues"
    },
    "split_keywords": [
        "ai risks",
        " ai safety",
        " ai governance",
        " risk taxonomies",
        " risk identification",
        " risk detection",
        " ai task identification",
        " ai risk management",
        " ai risk questionnaire",
        " ai systems modelling",
        " knowledge graph",
        " chain of thought"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0a20675747eb4a5bfb4bffa9babb223aabdabacac15c65c543835891261270e1",
                "md5": "c8f11a8d2686edd3e2954c2060c4ee99",
                "sha256": "465d303e65286705077c678f25790273188a3b44fc65bb5088bd8c70c1d8500f"
            },
            "downloads": -1,
            "filename": "risk_atlas_nexus-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c8f11a8d2686edd3e2954c2060c4ee99",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<3.12.5,>=3.11",
            "size": 265392,
            "upload_time": "2025-07-15T08:28:39",
            "upload_time_iso_8601": "2025-07-15T08:28:39.694870Z",
            "url": "https://files.pythonhosted.org/packages/0a/20/675747eb4a5bfb4bffa9babb223aabdabacac15c65c543835891261270e1/risk_atlas_nexus-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fd349751ed82450fef1e83d25d226f1bc5e2f09a35769f7889b7e98f61710750",
                "md5": "8d6cd1a7bf9dc775f14e63bdde8e602d",
                "sha256": "c24ba8e8a4e8090fb3ae86166270c72eeb79db831d10a811d17225cf358b197e"
            },
            "downloads": -1,
            "filename": "risk_atlas_nexus-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "8d6cd1a7bf9dc775f14e63bdde8e602d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<3.12.5,>=3.11",
            "size": 234440,
            "upload_time": "2025-07-15T08:28:41",
            "upload_time_iso_8601": "2025-07-15T08:28:41.444656Z",
            "url": "https://files.pythonhosted.org/packages/fd/34/9751ed82450fef1e83d25d226f1bc5e2f09a35769f7889b7e98f61710750/risk_atlas_nexus-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-15 08:28:41",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "IBM",
    "github_project": "risk-atlas-nexus",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "risk-atlas-nexus"
}
        
Elapsed time: 0.51792s