업계 뉴스

Microsoft의 보안 코파일럿과 Iron Software의 OpenAI 통합: 사이버 보안 및 문서 개선의 발전

Microsoft의 최신 혁신인 Copilot for Security는 2024년 4월 1일 전 세계 출시를 예정하고 있으며, 전 세계 사이버 보안 관행을 변화시킬 것으로 보입니다. 생성적 AI를 활용하여 Copilot은 보안 및 IT 전문가에게 까다로운 통찰력과 지침을 제공함으로써 보안 위험을 효과적으로 감지하고 완화할 수 있는 능력을 향상시킵니다. Microsoft가 하루에 처리하는 78조 개 이상의 보안 신호를 포함한 방대한 데이터 및 위협 정보로 지원된 Copilot은 사용자에게 맞춤형 권장 사항을 제공합니다. 이를 통해 응답 시간을 단축하고 전문성을 강화합니다.

Microsoft에서 수행한 최근 연구는 Copilot의 변화적인 영향을 보여주었으며, 경험 많은 보안 분석가들은 다양한 작업에서 효율성이 22% 향상되고 정확도가 7% 향상되었다고 보고했습니다. 제공된 사용량 기반 라이선싱 모델을 도입함으로써 Copilot에 대한 접근을 민주화하여 모든 규모의 조직에서 접근할 수 있도록 만들었습니다. "사이버 보안 솔루션에 깊게 투자한 개발자로서, Microsoft의 Copilot for Security의 잠재력에 대해 기대가 큽니다. 우리는 그 능력을 탐색하고 우리 솔루션에 통합하여 향상된 보호를 제공하고자 합니다" - Justin Pierce, Iron Software의 수석 소프트웨어 엔지니어.

한편, Iron Software는 IronPdf.Extensions.AI NuGet 패키지에 혁신적인 기능을 도입하여 사용자가 OpenAI를 사용하여 PDF 문서를 향상시킬 수 있도록 했습니다. Microsoft Semantic Kernel로 구동되는 이 통합은 사용자가 PDF 콘텐츠의 간결한 요약을 생성하고 더 깊은 분석을 위한 지속적인 쿼리를 수행할 수 있도록 합니다. 간단한 단계를 따라 사용자는 OpenAI를 활용하여 PDF 처리 작업을 원활하게 향상시킬 수 있으며, 이는 문서 조작을 위한 인공지능을 사용하는 데 있어 중대한 진전을 나타냅니다.

"IronPdf.Extensions.AI NuGet 패키지는 이제 강력한 문서 향상 도구로 PDF 처리에 새로운 시대를 여는 OpenAI를 통합합니다. 간결한 요약 및 지속적인 쿼리 기능과 같은 기능으로 이제 사용자는 업무 흐름을 간소화하고 생산성을 향상시킬 수 있습니다" - Justin Pierce, Iron Software의 수석 소프트웨어 엔지니어. NuGet으로 설치

IronPDF AI가 당신에게 어떤 도움을 줄 수 있을까요? 여기 간단한 소개입니다

  1. 요약: 긴 PDF 문서의 간결한 요약을 빠르게 생성할 수 있습니다. 이 기능은 많은 양의 정보를 효율적으로 걸러 내야 하는 전문가에게 매우 유용합니다.
  2. 쿼리 및 기억화: IronPDF AI는 PDF 문서 콘텐츠를 더 잘 이해하고 기억할 수 있도록 복잡한 알고리즘을 사용합니다. 쿼리 기능을 통해 PDF 문서를 계속해서 탐구하고 분석할 수 있습니다. 특정 질문을 할 수 있으며, 관련 데이터를 추출하고, 문서 내용에 대한 더 깊은 통찰을 얻을 수 있습니다.

PDF 요약 예제

PDF 문서를 가져와서 PDF 문서의 요약을 생성하기 위해 Summarize 메서드를 사용하세요. 샘플 PDF 파일을 여기에서 다운로드할 수 있습니다. 아래는 코드 샘플입니다:

using IronPdf;
using IronPdf.AI;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.Memory;
using System;
using System.Threading.Tasks;

// Configure the Azure endpoint and API key for OpenAI services
string azureEndpoint = "AzureEndPoint";
string apiKey = "APIKEY";

// Initialize a volatile memory store
var volatileMemoryStore = new VolatileMemoryStore();

// Build and configure the Semantic Kernel with Azure OpenAI services
var builder = new KernelBuilder()
    .WithAzureTextEmbeddingGenerationService("oaiembed", azureEndpoint, apiKey)
    .WithAzureChatCompletionService("oaichat", azureEndpoint, apiKey)
    .WithMemoryStorage(volatileMemoryStore);
var kernel = builder.Build();

// Initialize the IronAI with the configured kernel
IronAI.Initialize(kernel);

// Import the PDF document
PdfDocument pdf = PdfDocument.FromFile("wikipedia.pdf");

// Summarize the document asynchronously
string summary = await pdf.Summarize(); // Optionally pass AI instance or use AI instance directly

// Output the document's summary to the console
Console.WriteLine($"Document summary: {summary}");
using IronPdf;
using IronPdf.AI;
using Microsoft.SemanticKernel;
using Microsoft.SemanticKernel.Memory;
using System;
using System.Threading.Tasks;

// Configure the Azure endpoint and API key for OpenAI services
string azureEndpoint = "AzureEndPoint";
string apiKey = "APIKEY";

// Initialize a volatile memory store
var volatileMemoryStore = new VolatileMemoryStore();

// Build and configure the Semantic Kernel with Azure OpenAI services
var builder = new KernelBuilder()
    .WithAzureTextEmbeddingGenerationService("oaiembed", azureEndpoint, apiKey)
    .WithAzureChatCompletionService("oaichat", azureEndpoint, apiKey)
    .WithMemoryStorage(volatileMemoryStore);
var kernel = builder.Build();

// Initialize the IronAI with the configured kernel
IronAI.Initialize(kernel);

// Import the PDF document
PdfDocument pdf = PdfDocument.FromFile("wikipedia.pdf");

// Summarize the document asynchronously
string summary = await pdf.Summarize(); // Optionally pass AI instance or use AI instance directly

// Output the document's summary to the console
Console.WriteLine($"Document summary: {summary}");
$vbLabelText   $csharpLabel

출력 요약

image

Microsoft의 Copilot for Security와 Iron Software의 OpenAI 통합은 각각 자신의 분야에서 중요한 발전을 나타냅니다. Copilot은 사이버 보안 조치를 강화하는 반면, Iron Software의 OpenAI 통합은 문서 향상을 혁신화합니다. 두 혁신 모두 강력한 도구를 통해 사용자가 디지털 자산을 보호하고 워크플로우를 간소화할 수 있게 하여, 오늘날의 디지털 환경에서 진화하는 위협을 앞서가는 데 필수적입니다.