Skip to main content

On This Page

Scaling Enterprise AI with Governance and Operating Models

2 min read
Share

These articles are AI-generated summaries. Please check the original sources for full details.

Scaling Enterprise AI

IBM’s experience in scaling enterprise AI has shown that successful implementation requires balancing innovation with governance, security, and trust, with CIO Matt Lyteson emphasizing that it’s a people and operating model challenge, not just a technology problem. The company’s AI license to drive framework certifies employees to build and deploy AI agents responsibly, ensuring data privacy, security, and enterprise integration.

Why This Matters

The traditional approach to developing enterprise technology is dissolving as AI capabilities expand, and business leaders are no longer willing to wait for IT to get around to their use case, leading to shadow IT and increased risk exposure, with the skills gap between IT organizations and business function experts compounding the challenge, and IBM’s approach to embedding governance into the tech stack has been to reimagine the entire workflow from idea to production, automating compliance checks and connecting to approved data sources.

Key Insights

  • IBM’s AI license to drive framework certifies employees to build and deploy AI agents securely, ensuring data privacy and enterprise integration.
  • AI fusion teams combine business function experts with IT technologists to collapse traditional handoffs and accelerate value delivery.
  • The use of a hyper-opinionated enterprise AI platform, such as IBM’s watsonX Orchestrate, watsonX Data, and watsonX Governance, enables speed and security.

Working Example

# Example of a simple AI agent using IBM's Watson Assistant
import json
from ibm_watson import AssistantV2

# Initialize the Watson Assistant
assistant = AssistantV2(
    version='2021-11-27',
    iam_apikey='YOUR_API_KEY',
    url='https://api.us-south.assistant.watson.cloud.ibm.com'
)

# Define the AI agent's intent and response
intent = 'hello'
response = 'Hello, how can I assist you?'

# Create a session and send a message to the AI agent
session_id = assistant.create_session().get_result()['session_id']
message = assistant.message(
    assistant_id='YOUR_ASSISTANT_ID',
    session_id=session_id,
    input={'message_type': 'text', 'text': 'hello'}
).get_result()

# Print the AI agent's response
print(message['output']['generic'][0]['text'])

Practical Applications

  • Use Case: IBM’s AI fusion teams combine business function experts with IT technologists to accelerate value delivery, such as in procurement workflows.
  • Pitfall: Shadow IT and lack of governance can lead to increased risk exposure and data leakage, emphasizing the need for a hyper-opinionated enterprise AI platform.

References:

Continue reading

Next article

Semantic Chaining Jailbreak

Related Content