<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Digital Transformation | Giulia Solinas</title><link>https://giuliasolinas.github.io/tags/digital-transformation/</link><atom:link href="https://giuliasolinas.github.io/tags/digital-transformation/index.xml" rel="self" type="application/rss+xml"/><description>Digital Transformation</description><generator>Hugo Blox Builder (https://hugoblox.com)</generator><language>en-us</language><lastBuildDate>Fri, 03 Jul 2026 00:00:00 +0000</lastBuildDate><image><url>https://giuliasolinas.github.io/media/icon_hu_982c5d63a71b2961.png</url><title>Digital Transformation</title><link>https://giuliasolinas.github.io/tags/digital-transformation/</link></image><item><title>Building Agents in Bob with a Software Spec Driven Approach</title><link>https://giuliasolinas.github.io/blog/bob_wxo_skills/</link><pubDate>Fri, 03 Jul 2026 00:00:00 +0000</pubDate><guid>https://giuliasolinas.github.io/blog/bob_wxo_skills/</guid><description>&lt;h1 id="building-agents-in-bob-with-a-software-spec-driven-approach"&gt;Building Agents in Bob with a Software Spec Driven Approach&lt;/h1&gt;
&lt;p&gt;Agentic systems become easier to build, review, and evolve when they are treated like software products instead of clever prompts. Bob&amp;rsquo;s dedicated skills support exactly that style of work: start with business intent, turn it into explicit specifications, generate implementation artifacts, and then analyze the result against the design.&lt;/p&gt;
&lt;p&gt;In this post, I describe how to use Bob and four dedicated skills as an end-to-end, spec driven workflow for creating watsonx Orchestrate (wxO) agentic solutions.&lt;/p&gt;
&lt;h2 id="why-spec-driven-agent-development-matters"&gt;Why Spec Driven Agent Development Matters&lt;/h2&gt;
&lt;p&gt;Traditional agent building often starts with a prompt and quickly jumps into tools, flows, and integrations. That can work for experiments, but it becomes fragile when the solution has real business logic, compliance expectations, system integrations, or multiple collaborators.&lt;/p&gt;
&lt;p&gt;A software spec driven approach flips the sequence:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Define the business problem before choosing the implementation.&lt;/li&gt;
&lt;li&gt;Produce architecture and process specifications before generating code.&lt;/li&gt;
&lt;li&gt;Keep business rules legible in Standard Operating Procedures (SOPs).&lt;/li&gt;
&lt;li&gt;Generate wxO artifacts from the agreed specification.&lt;/li&gt;
&lt;li&gt;Analyze the implementation and feed findings back into the next iteration.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In this framework, the specification is not a bulk of documentation that none reads and gets under the deck of work to be done for a client. It is the contract that the developer signs with the agent.&lt;/p&gt;
&lt;h2 id="the-bob-skill-pipeline"&gt;The Bob Skill Pipeline&lt;/h2&gt;
&lt;p&gt;We can bring into the Bob&amp;rsquo;s workspace (global or at the project level) four specialized skills that form a complete pipeline for designing, building, and auditing wxO agentic solutions:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Skill&lt;/th&gt;
&lt;th&gt;Primary Question&lt;/th&gt;
&lt;th&gt;Output&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;solution-architect&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;What should we build, and why?&lt;/td&gt;
&lt;td&gt;Solution overview, architecture, and implementation plan&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;sop-builder&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;How should the business process work?&lt;/td&gt;
&lt;td&gt;Structured SOP with process flow, data needs, rules, and decisions&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;wxo-builder&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;How do we turn the spec into wxO artifacts?&lt;/td&gt;
&lt;td&gt;Importable wxO project with agents, tools, flows, connections, and scripts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;wxo-analyzer&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;Does the implementation match expectations?&lt;/td&gt;
&lt;td&gt;Documentation and audit reports for an existing wxO project&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The skills are avaialble in the GitHub repository for
. We can clone the repo and import the folders into our project.&lt;/p&gt;
&lt;p&gt;The important pattern is that each skill produces the input for the next one. That makes the workflow traceable from business problem to deployed solution.&lt;/p&gt;
&lt;h2 id="step-1-start-with-solution-architect"&gt;Step 1: Start with &lt;code&gt;solution-architect&lt;/code&gt;&lt;/h2&gt;
&lt;p&gt;Use &lt;code&gt;solution-architect&lt;/code&gt; when you have a business problem or use case, but no technical design yet.&lt;/p&gt;
&lt;p&gt;Example prompt:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;I need an AI agent that processes invoices from a shared mailbox, extracts invoice data, validates it against vendor records, and prepares a SalesForce update.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The goal at this stage is not to write code. The goal is to create a shared understanding of the solution.&lt;/p&gt;
&lt;p&gt;The agent using the &lt;code&gt;solution-architect&lt;/code&gt; skills should produce three key documents:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Document&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Solution Overview&lt;/td&gt;
&lt;td&gt;Captures the executive summary, business context, problem statement, and agent requirements&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Solution Architecture&lt;/td&gt;
&lt;td&gt;Describes components, integrations, data flow, security, and architecture diagrams&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Implementation Plan&lt;/td&gt;
&lt;td&gt;Breaks the work into phases, assumptions, constraints, and SOP candidates&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;The implementation plan is especially important because it decomposes the solution into business processes that can be specified independently.&lt;/p&gt;
&lt;h2 id="step-2-convert-architecture-into-sops-with-sop-builder-skills"&gt;Step 2: Convert Architecture into SOPs with &lt;code&gt;sop-builder&lt;/code&gt; skills&lt;/h2&gt;
&lt;p&gt;Use &lt;code&gt;sop-builder&lt;/code&gt; skills when you have an architecture document, workflow description, BPMN model, Langflow export, n8n export, or any other process-oriented input.&lt;/p&gt;
&lt;p&gt;This skill turns design intent into a plain-language Standard Operating Procedure. That SOP becomes the specification for implementation.&lt;/p&gt;
&lt;p&gt;A good SOP includes:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Business process flow diagrams&lt;/li&gt;
&lt;li&gt;Business context and problem statement&lt;/li&gt;
&lt;li&gt;Input, processing, and output data requirements&lt;/li&gt;
&lt;li&gt;Business rules and decision points&lt;/li&gt;
&lt;li&gt;Integration expectations&lt;/li&gt;
&lt;li&gt;Error handling and escalation behavior&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This is where the spec driven approach becomes practical. Instead of embedding business logic directly in generated tools or agent instructions, you first make that logic visible and reviewable.&lt;/p&gt;
&lt;p&gt;Example prompt:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Build the SOP for the invoice extraction and validation flow from the implementation plan.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;For larger solutions, a good option can be creating one SOP per major flow. A single monolithic SOP usually hides important decisions and makes generation harder to review.&lt;/p&gt;
&lt;h2 id="step-3-generate-the-wxo-solution-with-wxo-builder-skills"&gt;Step 3: Generate the wxO Solution with &lt;code&gt;wxo-builder&lt;/code&gt; skills&lt;/h2&gt;
&lt;p&gt;Use Bob with &lt;code&gt;wxo-builder&lt;/code&gt; skills when you have an SOP or a very clear build prompt and want actual watsonx Orchestrate artifacts.&lt;/p&gt;
&lt;p&gt;This is the point where Bob moves from specification into implementation. Given a strong SOP, &lt;code&gt;wxo-builder&lt;/code&gt; can generate an importable wxO project structure such as:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;my_solution/
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; agents/
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; my_agent.yaml
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; tools/
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; my_tool.py
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; my_flow.py
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; connections/
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; my_connection.yaml
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; main_flow.py
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; import-all.sh
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;The agent with the builder skills can create:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Native wxO agents&lt;/li&gt;
&lt;li&gt;Python tools with correct decorator and docstring conventions&lt;/li&gt;
&lt;li&gt;Flow Builder patterns for document processing, user activity, conditional logic, and multi-agent workflows&lt;/li&gt;
&lt;li&gt;Knowledge base configurations&lt;/li&gt;
&lt;li&gt;Connection YAML files for credential management&lt;/li&gt;
&lt;li&gt;Import scripts for repeatable setup&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The quality of the generated solution depends heavily on the quality of the SOP. If the SOP defines the business rules, data contracts, exception paths, and integration behavior, the builder has fewer assumptions to invent.&lt;/p&gt;
&lt;p&gt;Example prompt:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Generate the wxO solution from this SOP. Create the agent configuration, required Python tools, connection specs, and import script.
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;This step should usually happen in Agent mode because it writes project files. Note that you can further empower the agent mode by giving MCP connections to the Orchestrate documentation through the wx orchestrate ADK. However, a downside of MCP connections is larger token consumptions. An alternative method would be using the CLI skills approach by Floring Manila and Niklas Heidoff as explained in this
.&lt;/p&gt;
&lt;h2 id="step-4-audit-and-document-with-wxo-analyzer-skills"&gt;Step 4: Audit and Document with &lt;code&gt;wxo-analyzer&lt;/code&gt; skills&lt;/h2&gt;
&lt;p&gt;Use &lt;code&gt;wxo-analyzer&lt;/code&gt;skills when you have an existing wxO project and want to understand, document, or audit it.&lt;/p&gt;
&lt;p&gt;The Agent with the analyzer skills should produce a three-report documentation set:&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Report&lt;/th&gt;
&lt;th&gt;Purpose&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Solution Overview&lt;/td&gt;
&lt;td&gt;Summarizes architecture, components, and file structure&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Agent Analysis&lt;/td&gt;
&lt;td&gt;Breaks down each agent, its tools, collaborators, instructions, and LLM settings&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tools and Components&lt;/td&gt;
&lt;td&gt;Reviews flows, Python tools, connections, knowledge bases, and implementation patterns&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;This closes the loop. After generating or modifying a solution, analyze it and compare the reports against the original architecture and SOPs.&lt;/p&gt;
&lt;p&gt;Useful review questions include:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Does the generated agent follow the intended process?&lt;/li&gt;
&lt;li&gt;Are business rules represented explicitly?&lt;/li&gt;
&lt;li&gt;Are credentials handled through connections instead of hardcoded values?&lt;/li&gt;
&lt;li&gt;Are error paths and escalation paths implemented?&lt;/li&gt;
&lt;li&gt;Are tools too large, too ambiguous, or missing validation?&lt;/li&gt;
&lt;li&gt;Does the implementation introduce behavior that was not in the SOP?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The output of the step obtained with &lt;code&gt;wxo-analyzer&lt;/code&gt; skills can feed back into the tasks for the &lt;code&gt;sop-builder&lt;/code&gt; or &lt;code&gt;wxo-builder&lt;/code&gt; for refinement.&lt;/p&gt;
&lt;h2 id="a-practical-end-to-end-flow"&gt;A Practical End-to-End Flow&lt;/h2&gt;
&lt;p&gt;Here is the full workflow in one sequence:&lt;/p&gt;
&lt;p&gt;
&lt;figure &gt;
&lt;div class="flex justify-center "&gt;
&lt;div class="w-full" &gt;
&lt;img alt="Bob workflow skills sequence"
srcset="https://giuliasolinas.github.io/blog/bob_wxo_skills/workflow_skills_hu_17e918a604c56b5b.webp 320w, https://giuliasolinas.github.io/blog/bob_wxo_skills/workflow_skills_hu_379e626dc7b46c0c.webp 480w, https://giuliasolinas.github.io/blog/bob_wxo_skills/workflow_skills_hu_ad0a004a271c682c.webp 710w"
sizes="(max-width: 480px) 100vw, (max-width: 768px) 90vw, (max-width: 1024px) 80vw, 760px"
src="https://giuliasolinas.github.io/blog/bob_wxo_skills/workflow_skills_hu_17e918a604c56b5b.webp"
width="710"
height="760"
loading="lazy" data-zoomable /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/figure&gt;
&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-text" data-lang="text"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;Business problem
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; solution-architect
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; Solution overview, architecture, implementation plan
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; sop-builder
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; Standard Operating Procedure
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; wxo-builder
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; Importable wxO project
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; wxo-analyzer
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; -&amp;gt; Audit reports and improvement backlog
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="best-practices-for-spec-driven-agent-work"&gt;Best Practices for Spec Driven Agent Work&lt;/h2&gt;
&lt;p&gt;Start with architecture for non-trivial use cases. If the solution touches multiple systems, users, approval steps, or data sources, begin with &lt;code&gt;solution-architect&lt;/code&gt; skills.&lt;/p&gt;
&lt;p&gt;Keep SOPs focused. One SOP per flow makes the specification easier to review and easier for &lt;code&gt;wxo-builder&lt;/code&gt; skills to implement cleanly.&lt;/p&gt;
&lt;p&gt;Treat the SOP as the contract. The SOP should define data inputs, outputs, business rules, decisions, and exceptions clearly enough that implementation choices can be checked against it.&lt;/p&gt;
&lt;p&gt;Build from reviewed specs. Do not rush from a vague idea to generated code. The fastest path is usually to clarify the spec first.&lt;/p&gt;
&lt;p&gt;Analyze after building. Call the agent with the &lt;code&gt;wxo-analyzer&lt;/code&gt; skills after generation or major changes so the project can be reviewed for missing error handling, hardcoded credentials, oversized flows, or behavior that drifted from the SOP.&lt;/p&gt;
&lt;p&gt;Iterate deliberately. When the agent finds gaps, update the SOP or architecture first when the gap is conceptual. Update the wxO implementation when the spec is right but the build needs refinement.&lt;/p&gt;
&lt;h2 id="what-this-changes"&gt;What This Changes&lt;/h2&gt;
&lt;p&gt;Bob&amp;rsquo;s dedicated skills make agent development like professional software delivery.&lt;/p&gt;
&lt;p&gt;The workflow creates a chain of accountability:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Business requirements explain why the agent exists.&lt;/li&gt;
&lt;li&gt;Architecture explains how the solution should fit together.&lt;/li&gt;
&lt;li&gt;SOPs explain how the work should happen.&lt;/li&gt;
&lt;li&gt;wxO artifacts implement the agreed process.&lt;/li&gt;
&lt;li&gt;Analyzer reports show what was actually built.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;That chain is what makes agentic systems deliverable and maintainable. It gives teams a way to discuss requirements, review logic, generate implementation, and audit the result without losing the thread between business intent and technical behavior.&lt;/p&gt;
&lt;p&gt;When used together, &lt;code&gt;solution-architect&lt;/code&gt;, &lt;code&gt;sop-builder&lt;/code&gt;, &lt;code&gt;wxo-builder&lt;/code&gt;, and &lt;code&gt;wxo-analyzer&lt;/code&gt; skills turn Bob into a spec driven agent factory: one that can move from idea to implementation while keeping the reasoning visible at every step.&lt;/p&gt;</description></item><item><title>AI for Science</title><link>https://giuliasolinas.github.io/blog/aiforscience/</link><pubDate>Tue, 21 Jan 2025 00:00:00 +0000</pubDate><guid>https://giuliasolinas.github.io/blog/aiforscience/</guid><description>&lt;p&gt;&lt;strong&gt;AI‑Enhanced Science: How Generative Models Are Accelerating Discovery, Literature Mining, and Idea Generation&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Originally featured on the 
&lt;/em&gt;&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id="1ai-as-a-hilbert-for-equation-discovery"&gt;1. AI as a “Hilbert” for Equation Discovery&lt;/h3&gt;
&lt;p&gt;The most eye‑catching advance comes from the &lt;strong&gt;AI‑Hilbert&lt;/strong&gt; algorithm, whose recent Nature Communications paper demonstrates that multivariate polynomial generators can &lt;strong&gt;invent new scientific laws&lt;/strong&gt; from existing theory and data.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Why it matters&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Data‑scarce domains&lt;/strong&gt; (e.g., high‑energy physics, climate modeling) often lack clean, labeled datasets. Traditional symbolic regression struggles when the search space is huge and the underlying dynamics are noisy.&lt;/li&gt;
&lt;li&gt;AI‑Hilbert expands the search space by coupling &lt;strong&gt;continuous polynomial families&lt;/strong&gt; with a Bayesian‑style pruning of implausible terms, delivering equations that are both &lt;strong&gt;interpretable&lt;/strong&gt; and &lt;strong&gt;generalizable&lt;/strong&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;Bottom line&lt;/em&gt; – AI can now act as a “virtual mathematician,” surfacing equations that push the frontier of scientific theory while keeping the output &lt;strong&gt;human‑readable&lt;/strong&gt; and &lt;strong&gt;testable&lt;/strong&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id="2smarter-literature-mining-with-scilitllm"&gt;2. Smarter Literature Mining with SciLitLLM&lt;/h3&gt;
&lt;p&gt;Reading the literature is the backbone of any research program, yet the &lt;strong&gt;semantic gap&lt;/strong&gt; between disciplines hampers existing LLMs. SciLitLLM, a family of models built on a &lt;strong&gt;continual‑pre‑training + supervised fine‑tuning&lt;/strong&gt; pipeline, directly addresses this problem.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Key capabilities&lt;/em&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Domain‑aware embeddings&lt;/strong&gt; that capture jargon from chemistry, biology, nanomaterials, etc., without catastrophic forgetting.&lt;/li&gt;
&lt;li&gt;Ability to &lt;strong&gt;extract targeted facts&lt;/strong&gt; (e.g., “list all catalysts reported with &amp;gt;95 % yield under 25 °C”) and produce &lt;strong&gt;concise, citation‑ready summaries&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Human‑in‑the‑loop&lt;/strong&gt; validation layer: researchers verify that hallucinations are filtered before conclusions are drawn.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;em&gt;Limitations&lt;/em&gt; – The model is powerful but not a substitute for critical appraisal; it still requires domain experts to &lt;strong&gt;curate outputs&lt;/strong&gt; and guard against subtle misinterpretations.&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id="3llmgenerated-research-ideas-and-their-unexpected-novelty"&gt;3. LLM‑Generated Research Ideas (and Their Unexpected Novelty)&lt;/h3&gt;
&lt;p&gt;A Stanford‑led pre‑print experiment pitted &lt;strong&gt;human‑only idea generation&lt;/strong&gt; against &lt;strong&gt;LLM‑generated proposals&lt;/strong&gt; that were subsequently &lt;strong&gt;re‑ranked by expert reviewers&lt;/strong&gt;.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Result:&lt;/strong&gt; The top‑ranked LLM ideas were judged &lt;strong&gt;significantly more novel&lt;/strong&gt; than those produced solely by the human panel, even though feasibility scores were comparable.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Implication:&lt;/strong&gt; Large language models can &lt;strong&gt;break cognitive lock‑in&lt;/strong&gt;, surfacing unconventional connections that traditional pipelines often overlook.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Caveats:&lt;/strong&gt; Novelty does not guarantee practicality; further validation and feasibility modeling are required before moving to grant proposals or experimental testing.&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;h3 id="4the-common-thread--what-still-needs-to-happen"&gt;4. The Common Thread &amp;amp; What Still Needs to Happen&lt;/h3&gt;
&lt;p&gt;All three examples share a &lt;strong&gt;common prerequisite&lt;/strong&gt;: they are &lt;strong&gt;research‑grade tools&lt;/strong&gt;, not off‑the‑shelf plug‑ins. Realising their full potential demands:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Customization&lt;/strong&gt; – fine‑tuning on discipline‑specific corpora or data pipelines.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Trust &amp;amp; Transparency&lt;/strong&gt; – rigorous validation, explainability layers, and community benchmarks.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Institutional Investment&lt;/strong&gt; – compute resources, training programs, and integration into research workflows.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;In short, AI is moving from a &lt;strong&gt;supporting calculator&lt;/strong&gt; to a &lt;strong&gt;co‑investigator&lt;/strong&gt;, but the transition hinges on sustained collaboration between technologists, domain scientists, and research administrators.&lt;/p&gt;
&lt;hr&gt;
&lt;h3 id="looking-ahead"&gt;Looking Ahead&lt;/h3&gt;
&lt;p&gt;The convergence of symbolic equation generators, domain‑aware literature models, and ideation‑focused LLMs suggests a &lt;strong&gt;new research ecosystem&lt;/strong&gt; where AI amplifies every stage of the scientific method—from hypothesis birth to experimental validation. When these tools become as routine as a statistical package, we can expect a &lt;strong&gt;acceleration of discovery&lt;/strong&gt; across fields that have traditionally stagnated under data scarcity and human cognitive limits.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Stay tuned to Diagonalising for deeper dives into each tool, practical implementation guides, and interviews with the scientists who are already piloting them.&lt;/em&gt;&lt;/p&gt;</description></item><item><title>Innovation capital: Is the tide low?</title><link>https://giuliasolinas.github.io/blog/innovationvc/</link><pubDate>Wed, 29 Jun 2022 00:00:00 +0000</pubDate><guid>https://giuliasolinas.github.io/blog/innovationvc/</guid><description>&lt;p&gt;Half a year into 2022 central banks are poised to keep raising interest rates, supply chains are hobbled, and a war is raging in Europe. As this harrowing mix turned markets tumultuous and zapped investors’ confidence, what does it mean for VC-backed investment?&lt;/p&gt;
&lt;p&gt;In this
, Christoph Feest and I argue that trends in policy and digitalization feed an undiminished appetite and need for venture backing, leading to increased, more-broadly sourced and more widely-distributed investments.&lt;/p&gt;</description></item></channel></rss>