{"id":36507,"date":"2026-03-18T10:23:53","date_gmt":"2026-03-18T09:23:53","guid":{"rendered":"https:\/\/risc.web-email.at\/fachbeitraege\/analyze-contracts-using-ai\/"},"modified":"2026-03-20T10:23:59","modified_gmt":"2026-03-20T09:23:59","slug":"analyze-contracts-using-ai","status":"publish","type":"publication","link":"https:\/\/risc.web-email.at\/en\/technicalarticles\/analyze-contracts-using-ai\/","title":{"rendered":"Analyze contracts using AI"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">How LLMs are revolutionizing everyday B2B life  <\/h2>\n\n<p class=\"has-medium-font-size\">Contract negotiations tie up a lot of time and resources in companies. Today, large language models analyze and compare contracts automatically and can be operated with currently available solutions on local infrastructure.   <\/p>\n\n<h3 class=\"wp-block-heading\">by DI (FH) Stephan Leitner<\/h3>\n<div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-media-text has-media-on-the-right is-stacked-on-mobile is-image-fill-element\"><div class=\"wp-block-media-text__content\">\n<p><strong>Contents<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>From raw text to structured analysis: what happens before AI<\/li>\n\n\n\n<li>RAG instead of installments: The solution for long contracts<\/li>\n\n\n\n<li>  Embeddings: Precision in contract comparison<\/li>\n\n\n\n<li>Controlling hallucinations: Trust with limits<\/li>\n\n\n\n<li>On-premises instead of cloud: control over the infrastructure is crucial<\/li>\n\n\n\n<li>Integration into existing systems: The next step towards a company-wide solution<\/li>\n\n\n\n<li>Conclusion<\/li>\n\n\n\n<li>Author<\/li>\n\n\n\n<li>Contact us<\/li>\n<\/ul>\n<\/div><figure class=\"wp-block-media-text__media\"><img data-dominant-color=\"3f474b\" data-has-transparency=\"false\" decoding=\"async\" width=\"1024\" height=\"574\" src=\"https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1-1024x574.webp\" alt=\"Contract comparison with AI\" class=\"wp-image-36482 size-full not-transparent\" style=\"--dominant-color: #3f474b; object-position:50% 50%\" srcset=\"https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1-1024x574.webp 1024w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1-300x168.webp 300w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1-768x430.webp 768w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1.webp 1456w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure><\/div>\n\n\n\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<p>A new 120-page framework agreement, a short review period, an overworked legal team. This scenario is omnipresent in the B2B sector. Large Language Models (LLMs) can fundamentally change this process, provided the technical implementation is right. Those who understand the technical fundamentals will make more informed decisions &#8211; when it comes to infrastructure, risk assessment and building a sustainable solution for contract analysis.     <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>From raw text to structured analysis: what happens before AI<\/strong><\/h2>\n\n\n\n<p>Before an LLM can process a contract, it must be available in a suitable format. In practice, contracts are often only available as scanned PDFs or poorly structured Word documents. For an AI, scanned PDFs are just images without machine-readable text.    <\/p>\n\n\n\n<p>Optical Character Recognition (OCR) is used here, which recognizes characters in images and converts them into machine-readable text. Modern OCR solutions achieve high recognition rates, but errors can still occur with poor scan quality, handwritten annotations or complex tables.   <\/p>\n\n\n\n<p>Pre-processing is therefore an often underestimated part of the system. This includes the correction of OCR errors, the recognition of document structure (sections, clauses, attachments), the processing of tables and images and the normalization of date formats or currency specifications.   <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>RAG instead of installments: The solution for long contracts<\/strong> <\/h2>\n\n\n\n<p>A central technical limit of LLMs is the context window. This is the maximum amount of text that a model can process per request. Current models can handle significantly more than previous generations, but extensive contracts with annexes, service specifications and framework agreements quickly exceed this limit if you try to process everything in a single query.    <\/p>\n\n\n\n<p>The solution is called Retrieval Augmented Generation (RAG). The principle is elegant: the entire contract is stored in small sections (chunks) in a vector database. When<em>a user<\/em>asks a question, the system first searches for the relevant text passages and transfers them to the LLM with the question. The model then answers only on the basis of these passages, not from its general training knowledge.     <\/p>\n\n\n\n<p>This has two decisive advantages. Firstly, the approach scales: the document length no longer plays a role because only relevant sections are ever loaded. Secondly, the answer is comprehensible: Every statement in the LLM can be traced back directly to a specific passage in the original document.    <\/p>\n\n\n\n<p>In practice, many systems combine RAG with a hierarchical document structure: clauses are not only saved as continuous text, but are also provided with metadata &#8211; such as clause type, contracting party or validity date. This makes targeted queries such as &#8220;Show all clauses on the contract term from supplier contracts from 2023&#8221; possible in the first place.   <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>Embeddings: Precision in contract comparison<\/strong><\/h2>\n\n\n\n<p>One use case in which LLMs provide particularly efficient support is the comparison of contracts. Deviations from an internal standard can be identified, as can changes made to a contract by a contractual partner during negotiations.   <\/p>\n\n\n\n<p>A simple text search quickly reaches its limits here. It finds identical words, but no similarities in content. A clause that limits liability to &#8220;direct damages&#8221; and another that &#8220;excludes consequential damages&#8221; have the same meaning in terms of content, but look completely different in terms of text.    <\/p>\n\n\n\n<p>Embeddings solve this problem. Sections of text are converted into high-dimensional mathematical vectors. Similar content lies close together in the vector space, regardless of the exact wording. The system thus recognizes semantic similarities and specifically identifies divergent clauses.     <\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-dominant-color=\"f5f4f5\" data-has-transparency=\"true\" style=\"--dominant-color: #f5f4f5;\" decoding=\"async\" width=\"1024\" height=\"933\" sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-1024x933.webp\" alt=\"\" class=\"wp-image-36489 has-transparency\" srcset=\"https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-1024x933.webp 1024w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-300x273.webp 300w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-768x700.webp 768w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-1536x1400.webp 1536w, https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/word-embedding-example-2048x1866.webp 2048w\" \/><\/figure>\n\n\n\n<p>Image source: <a href=\"https:\/\/www.scaler.com\/topics\/tensorflow\/tensorflow-word-embeddings\/\" target=\"_blank\" rel=\"noopener\">https:\/\/www.scaler.com\/topics\/tensorflow\/tensorflow-word-embeddings\/<\/a><\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>Controlling hallucinations: Trust with limits<\/strong><\/h2>\n\n\n\n<p>Hallucinations are a well-known problem with LLMs. The model produces statements that sound plausible but are factually incorrect. Such errors are particularly critical in the contractual context. An incorrectly summarized warranty clause or an overlooked exemption from liability can have considerable financial consequences.     <\/p>\n\n\n\n<p>Professional systems counter this risk with several measures. The most important is transparency: every statement made by the AI is backed up with the exact original passage from the RAG process from which it was derived. Users can click to jump to the source and check the statement manually.    <\/p>\n\n\n\n<p>Additional measures are also used. Prompt engineering explicitly instructs the model to only answer when it is certain, to provide sample answers and to openly admit when it does not know something. Fine-tuning refers to the further training of a pre-trained model on a specialized data set, such as specialist legal texts, sample contracts or annotated decisions, in order to improve the quality for the specific use case. Guardrails add an additional layer of security: a downstream agent checks the answers, automated tools recognize typical hallucination patterns, and fact checks ensure consistency with the source documents. Advanced systems also use multi-step reasoning, where the model proceeds step by step instead of directly generating an answer.      <\/p>\n\n\n\n<p>Despite all these measures, AI cannot replace legal expertise. It reduces manual effort and gives legal teams more time for the really important decisions.   <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>On-premises instead of cloud: control over the infrastructure is crucial<\/strong><\/h2>\n\n\n\n<p>Contracts contain sensitive business information &#8211; price conditions, delivery quantities, exclusive agreements. Transferring such documents to external cloud services means a loss of control over critical company data. For many companies, this is not an acceptable option.    <\/p>\n\n\n\n<p>Operating an LLM on your own resources (on-premises) solves this problem. The data does not leave the company network. There is no dependency on external services, no unclear contractual conditions for data transfer and no questions about the use of input data for model training.    <\/p>\n\n\n\n<p>The technical basis for this is provided by powerful open source models. Models such as Mistral, Qwen and Gemma can be operated entirely on your own resources. Suitable systems are now available from around EUR 5,000, although at this price range, runtime and throughput must be reduced for parallel use. Solutions that provide enough resources for most SME requirements are available from around EUR 50,000.     <\/p>\n\n\n\n<p>By integrating company-specific contract data, the quality of these models can be significantly improved and optimized for the specific use case. On-premises operation also enables full control over model versions; updates are only imported after internal review and approval.   <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>Integration into existing systems: The next step towards a company-wide solution<\/strong><\/h2>\n\n\n\n<p>The technical core function of an LLM, which reads, evaluates and compares contracts, can be provided and purchased as a stand-alone product. The next step is the structured roll-out of this contract LLM into the existing company infrastructure.   <\/p>\n\n\n\n<p>Many companies already use contract management systems. An AI solution that runs as an isolated solution alongside these systems creates media disruptions and is hardly used on a day-to-day basis. Seamless integration via standardized interfaces is therefore crucial. With on-premises operation, the company has complete control over this interface. Adaptations, extensions and security updates can be implemented without external coordination.      <\/p>\n\n\n\n<p>A well thought-out roles and rights concept is also essential. Not every <em> employee<\/em>should be able to view all contracts. The AI solution must respect existing access rights and be integrated into the company&#8217;s identity management &#8211; this is also easier and more secure to implement on-premises than in a shared cloud environment.    <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong> <\/h2>\n\n\n\n<p>AI-supported contract analysis is now ready for production. LLMs, combined with RAG, domain-specific embedding models and controlled output, solve the key challenges: long documents, semantic comparison and traceability.   <\/p>\n\n\n\n<p>Those who opt for on-premises operation gain full control over models, data and infrastructure in addition to data protection. It also creates a basis that can be adapted to changing requirements without dependence on external providers. Companies that lay these foundations today create a scalable and sustainable solution that is tailored precisely to their own requirements.    <\/p>\n<\/div>\n<\/div><div class=\"wp-block-group-container alignfull \">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<h2 class=\"wp-block-heading has-text-align-left\">Ansprechperson<\/h2>\n\n\n\n<div class=\"wp-block-contact-form-7-contact-form-selector\">\n<div class=\"wpcf7 no-js\" id=\"wpcf7-f663-o1\" lang=\"en-US\" dir=\"ltr\" data-wpcf7-id=\"663\">\n<div class=\"screen-reader-response\"><p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"><\/p> <ul><\/ul><\/div>\n<form action=\"\/en\/wp-json\/wp\/v2\/publication\/36507#wpcf7-f663-o1\" method=\"post\" class=\"wpcf7-form init\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<fieldset class=\"hidden-fields-container\"><input type=\"hidden\" name=\"_wpcf7\" value=\"663\" \/><input type=\"hidden\" name=\"_wpcf7_version\" value=\"6.1.5\" \/><input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" \/><input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f663-o1\" \/><input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" \/><input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" \/>\n<\/fieldset>\n<div class=\"form-row\">\n\t<div class=\"form-input\">\n\t\t<p><label class=\"sr-only\" for=\"your-name\">Your name <\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-name\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" id=\"your-name\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Name\" value=\"\" type=\"text\" name=\"your-name\" \/><\/span>\n\t\t<\/p>\n\t<\/div>\n\t<div class=\"form-input\">\n\t\t<p><label class=\"sr-only\" for=\"your-email\">Your email<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-email\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-email wpcf7-validates-as-required wpcf7-text wpcf7-validates-as-email\" id=\"your-email\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"E-Mail\" value=\"\" type=\"email\" name=\"your-email\" \/><\/span>\n\t\t<\/p>\n\t<\/div>\n<\/div>\n<div class=\"form-row\">\n\t<div class=\"form-input\">\n\t\t<p><label class=\"sr-only\" for=\"your-company\">Company <\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-company\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" id=\"your-company\" aria-invalid=\"false\" placeholder=\"Unternehmen\" value=\"\" type=\"text\" name=\"your-company\" \/><\/span>\n\t\t<\/p>\n\t<\/div>\n\t<div class=\"form-input\">\n\t\t<p><label class=\"sr-only\" for=\"your-position\">Position<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-position\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text\" aria-invalid=\"false\" placeholder=\"Position\" value=\"\" type=\"text\" name=\"your-position\" \/><\/span>\n\t\t<\/p>\n\t<\/div>\n<\/div>\n<div class=\"form-row\">\n\t<div class=\"form-input\">\n\t\t<p><label class=\"sr-only\" for=\"your-subject\"> Subject <\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-subject\"><input size=\"40\" maxlength=\"400\" class=\"wpcf7-form-control wpcf7-text wpcf7-validates-as-required\" id=\"your-subject\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Thema\" value=\"\" type=\"text\" name=\"your-subject\" \/><\/span>\n\t\t<\/p>\n\t<\/div>\n<\/div>\n<p><span id=\"wpcf7-69de273dae50e-wrapper\" class=\"wpcf7-form-control-wrap phone-95-wrap\" style=\"display:none !important; visibility:hidden !important;\"><label for=\"wpcf7-69de273dae50e-field\" class=\"hp-message\">Please leave this field empty.<\/label><input id=\"wpcf7-69de273dae50e-field\"  class=\"wpcf7-form-control wpcf7-text\" type=\"text\" name=\"phone-95\" value=\"\" size=\"40\" tabindex=\"-1\" autocomplete=\"new-password\" \/><\/span><br \/>\n<label class=\"sr-only\" for=\"your-message\"> Your message (optional)<\/label><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"your-message\"><textarea cols=\"40\" rows=\"10\" maxlength=\"2000\" class=\"wpcf7-form-control wpcf7-textarea\" id=\"your-message\" aria-invalid=\"false\" placeholder=\"Ihre Nachricht an uns\" name=\"your-message\"><\/textarea><\/span><br \/>\n<span class=\"wpcf7-form-control-wrap\" data-name=\"hcap-cf7\">\t\t<input\n\t\t\t\ttype=\"hidden\"\n\t\t\t\tclass=\"hcaptcha-widget-id\"\n\t\t\t\tname=\"hcaptcha-widget-id\"\n\t\t\t\tvalue=\"eyJzb3VyY2UiOlsiY29udGFjdC1mb3JtLTdcL3dwLWNvbnRhY3QtZm9ybS03LnBocCJdLCJmb3JtX2lkIjo0MzZ9-c5ba05e011699d70dda36bf3838d9e02\">\n\t\t\t\t<span id=\"hcap_cf7-69de273daebef7.08200690\" class=\"wpcf7-form-control h-captcha \"\n\t\t\tdata-sitekey=\"3a6a81c1-2b2e-4b2a-b1eb-d9446bc09afb\"\n\t\t\tdata-theme=\"light\"\n\t\t\tdata-size=\"normal\"\n\t\t\tdata-auto=\"false\"\n\t\t\tdata-ajax=\"false\"\n\t\t\tdata-force=\"false\">\n\t\t<\/span>\n\t\t<input type=\"hidden\" id=\"_wpnonce\" name=\"_wpnonce\" value=\"83fc09d92f\" \/><input type=\"hidden\" name=\"_wp_http_referer\" value=\"\/en\/wp-json\/wp\/v2\/publication\/36507\" \/><\/span><input class=\"wpcf7-form-control wpcf7-submit has-spinner btn\" type=\"submit\" value=\"Senden\" \/>\n<\/p><div class=\"wpcf7-response-output\" aria-hidden=\"true\"><\/div>\n<\/form>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<h2 class=\"wp-block-heading\">Author<\/h2>\n\n\n<div class=\"contact-person\">\n      <picture>\n      \n      \n      \n      \n      <img decoding=\"async\" data-aos=\"fade-zoom-in\"\n           data-aos-offset=\"0\" class=\"w-full\" width=\"212\" height=\"293\"\n           src=\"https:\/\/risc.web-email.at\/app\/uploads\/2023\/07\/sleitner1-Background-Removed.jpg\"\n           alt=\"\">\n    <\/picture>\n    \n\n<h5 class=\"wp-block-heading\">DI (FH) Stephan Leitner<\/h5>\n\n\n\n<p>Head of Unit Domain-specific Applications<\/p>\n\n  <\/div>\n<\/div>\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Read more<\/h2>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button has-custom-width wp-block-button__width-100 is-style-fill\"><a class=\"wp-block-button__link has-medium-font-size has-custom-font-size wp-element-button\" href=\"https:\/\/risc.web-email.at\/en\/koalaw-your-intelligent-contract-analysis-software-for-data-driven-legal-processes\/\">KOALaw- Your intelligent contract analysis software for data-driven legal processes<\/a><\/div>\n<\/div>\n<\/div>\n<\/div><div class=\"posts-slider-block\" data-aos=\"fade-up\" data-aos-offset=\"0\" data-aos-anchor-placement=\"top-bottom\">\n        <section class=\"splide posts-slider\" aria-label=\"Gallery Slides\">\n            <div class=\"splide__arrows\">\n                <button class=\"splide__arrow splide__arrow--prev\">\n                    <span class=\"sr-only\">Previous<\/span>\n                    <img decoding=\"async\" loading=\"lazy\" width=\"25\" height=\"21\" src=\"https:\/\/risc.web-email.at\/app\/themes\/risc-theme\/public\/images\/icon-arrow.35d2ec.svg\"\n                         alt=\"Previous\">\n                <\/button>\n                <button class=\"splide__arrow splide__arrow--next\">\n                    <span class=\"sr-only\">Next<\/span>\n                    <img decoding=\"async\" loading=\"lazy\" width=\"25\" height=\"21\" src=\"https:\/\/risc.web-email.at\/app\/themes\/risc-theme\/public\/images\/icon-arrow.35d2ec.svg\"\n                         alt=\"Next\">\n                <\/button>\n            <\/div>\n            <div class=\"inner\">\n                <div class=\"splide__track\">\n                    <div class=\"splide__list\">\n\n                                                    <a href=\"https:\/\/risc.web-email.at\/en\/technicalarticles\/mcp-server-the-connecting-fabric-between-ai-data-and-tools\/\" class=\"splide__slide blog-post-teaser mb-1 lg:mb-3\">\n                                <div class=\"blog-image\">\n                                                                                                                                <picture>\n                                                                                        <img decoding=\"async\" src=\"https:\/\/risc.web-email.at\/app\/uploads\/2025\/12\/cstaub_Abstract_key_visual_representing_accelerating_artifici_0cbb7e09-d10c-49fa-a29a-bcf1b8e74acf_3-360x214.webp\"\n                                                 alt=\"MCP server: The connecting fabric between AI, data and tools\">\n                                        <\/picture>\n                                                                    <\/div>\n                                <div class=\"blog-content px-2 py-3 xl:px-4 xl:py-5\">\n                                    <h3>MCP server: The connecting fabric between AI, data and tools<\/h3>\n                                    <div class=\"blog-post-excerpt mt-2\">\n                                        MCP securely connects AI with files, APIs and systems &#8211; for automated, traceable workflows in industry and IT.\n                                    <\/div>\n                                    <span class=\"inline-block mt-2 more\">mehr erfahren <span class=\"ml-1 icon-more\"><\/span><\/span>\n\n                                <\/div>\n                            <\/a>\n                                                    <a href=\"https:\/\/risc.web-email.at\/en\/technicalarticles\/my-data-my-language-model\/\" class=\"splide__slide blog-post-teaser mb-1 lg:mb-3\">\n                                <div class=\"blog-image\">\n                                                                                                                                <picture>\n                                                                                        <img decoding=\"async\" src=\"https:\/\/risc.web-email.at\/app\/uploads\/2024\/09\/cstaub_Visualization_of_a_language_model_security_internal_co_d438bb2f-f2de-40a1-8cff-031f52e1b5a2_2-1-1-360x214.png\"\n                                                 alt=\"My data My language model\">\n                                        <\/picture>\n                                                                    <\/div>\n                                <div class=\"blog-content px-2 py-3 xl:px-4 xl:py-5\">\n                                    <h3>My data My language model<\/h3>\n                                    <div class=\"blog-post-excerpt mt-2\">\n                                        Workflows can be improved through the (partial) automation of tasks such as the creation of documents. Customer service can also be optimized through AI-supported personalization. The provision of data insights by AI systems also helps to optimize processes. Large language models (LLMs) such as ChatGPT offer a wide range of promising applications for this.     \n                                    <\/div>\n                                    <span class=\"inline-block mt-2 more\">mehr erfahren <span class=\"ml-1 icon-more\"><\/span><\/span>\n\n                                <\/div>\n                            <\/a>\n                                            <\/div>\n                <\/div>\n            <\/div>\n        <\/section>\n    <\/div>\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Contract negotiations tie up a lot of time and resources in companies. Today, large language models analyze and compare contracts automatically and can be operated with currently available solutions on local infrastructure.   <\/p>\n","protected":false},"featured_media":36506,"template":"","publication-category":[],"class_list":["post-36507","publication","type-publication","status-publish","has-post-thumbnail","hentry"],"acf":[],"portrait_thumb_url":"https:\/\/risc.web-email.at\/app\/uploads\/2026\/03\/risc_software_close-up_of_hands_working_on_printed_contract_n_c3ed5818-dd32-45e5-a74a-7911f8a0e717_1-360x214.webp","_links":{"self":[{"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/publication\/36507","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/publication"}],"about":[{"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/types\/publication"}],"version-history":[{"count":1,"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/publication\/36507\/revisions"}],"predecessor-version":[{"id":36511,"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/publication\/36507\/revisions\/36511"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/media\/36506"}],"wp:attachment":[{"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/media?parent=36507"}],"wp:term":[{"taxonomy":"publication-category","embeddable":true,"href":"https:\/\/risc.web-email.at\/en\/wp-json\/wp\/v2\/publication-category?post=36507"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}