<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Vamsi Krishna</title>
    <description>The latest articles on DEV Community by Vamsi Krishna (@vamsi_krishna_8cc2cb8f318).</description>
    <link>https://dev.to/vamsi_krishna_8cc2cb8f318</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3765569%2F316f255b-7a65-4fb1-802e-5eba6a4b7632.jpg</url>
      <title>DEV Community: Vamsi Krishna</title>
      <link>https://dev.to/vamsi_krishna_8cc2cb8f318</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/vamsi_krishna_8cc2cb8f318"/>
    <language>en</language>
    <item>
      <title>Appian Dev MCP Server</title>
      <dc:creator>Vamsi Krishna</dc:creator>
      <pubDate>Sun, 16 Aug 2026 12:37:59 +0000</pubDate>
      <link>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-dev-mcp-server-e2k</link>
      <guid>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-dev-mcp-server-e2k</guid>
      <description>&lt;p&gt;If you are an Appian developer who spends a lot of time inside an AI-powered editor or chat assistant, you know how tedious it is to switch back and forth between your IDE and the Appian Designer to look up an object, verify a record type, or run an expression rule.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Appian MCP Server&lt;/strong&gt; changes that. It lets system administrators, developers, and end users connect external AI applications to Appian capabilities through &lt;strong&gt;Model Context Protocol (MCP)&lt;/strong&gt;. Once enabled, MCP-compatible AI applications can talk to your Appian Cloud environment using a service account API key and interact with application data and business logic through natural language.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is Model Context Protocol?
&lt;/h2&gt;

&lt;p&gt;Model Context Protocol (MCP) is an open industry standard for connecting AI applications to external tools and data sources. It defines how an AI application connects to an MCP server to discover available tools, understand what inputs those tools expect, and invoke them.&lt;/p&gt;

&lt;p&gt;MCP is not Appian-specific. Appian supports it the same way it supports REST APIs or SAML for authentication — as an adopted standard that extends Appian’s reach into the broader AI ecosystem.&lt;/p&gt;

&lt;h2&gt;
  
  
  What the Appian MCP Server makes available
&lt;/h2&gt;

&lt;p&gt;Through MCP, an AI application can access the following Appian capabilities:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Record types:&lt;/strong&gt; Query data from synced record types using SQL.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Process models:&lt;/strong&gt; Start process models that are exposed as MCP tools and check their execution status.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Expression rules:&lt;/strong&gt; Evaluate expression rules exposed as MCP tools with provided inputs.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI agents:&lt;/strong&gt; Invoke Appian AI agents exposed as MCP tools and check agent execution status.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Generic tool architecture
&lt;/h2&gt;

&lt;p&gt;Rather than creating a separate MCP tool for every design object, the Appian MCP Server uses a small, fixed set of system tools that handle discovery and execution for all MCP-enabled objects:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Search&lt;/strong&gt; — the AI application searches for available tools matching the user’s request.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Get schema&lt;/strong&gt; — the AI application retrieves the full input and output schema for a specific tool.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Invoke&lt;/strong&gt; — the AI application calls the appropriate system tool to execute a process model, expression rule, or AI agent.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Query&lt;/strong&gt; — the AI application analyzes the available record types and securely queries the requested data.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;This architecture scales to hundreds of developer-enabled tools without overwhelming the AI application’s context window.&lt;/p&gt;

&lt;h2&gt;
  
  
  The developer workflow
&lt;/h2&gt;

&lt;p&gt;The developer experience is refreshingly simple:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open a design object (like an expression rule or process model) in Appian Designer.&lt;/li&gt;
&lt;li&gt;Enable the &lt;strong&gt;MCP tool&lt;/strong&gt; checkbox in the object’s properties — no code changes or redesign required.&lt;/li&gt;
&lt;li&gt;Write a clear &lt;strong&gt;tool description&lt;/strong&gt; so the AI application knows when to pick your tool.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;That is it. Your design object is now discoverable and invokable from any connected AI application.&lt;/p&gt;

&lt;h2&gt;
  
  
  Security model
&lt;/h2&gt;

&lt;p&gt;Connections authenticate as a single &lt;strong&gt;service account&lt;/strong&gt; using an API key. The service account’s permissions determine what is accessible:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Object security:&lt;/strong&gt; the service account can only discover and invoke tools for objects it has viewer access to.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Record-level and field-level security:&lt;/strong&gt; data fabric queries respect the security configured on the record type. Records and fields the service account cannot access are never returned.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Group membership:&lt;/strong&gt; tool visibility is filtered by the service account’s group membership.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Audit trail:&lt;/strong&gt; every MCP tool call is logged with the service account, the tool invoked, the timestamp, and the outcome.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Limitations to keep in mind
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Appian Cloud only&lt;/strong&gt; — self-managed environments are not supported.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No document upload&lt;/strong&gt; — external AI applications can retrieve documents but cannot upload them.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No start forms&lt;/strong&gt; — process models with start forms cannot be invoked through MCP.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No UI-dependent steps&lt;/strong&gt; — process models containing synchronous user input tasks cannot complete through MCP.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Service account authentication only&lt;/strong&gt; — there is no per-user authentication.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Synced record types only&lt;/strong&gt; — record types using direct data access or a record-level security expression are not queryable.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Getting started
&lt;/h2&gt;

&lt;p&gt;Each role has its own entry point:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;System administrators&lt;/strong&gt; enable the server in the Admin Console and configure authentication — see &lt;a href="https://docs.appian.com/suite/help/26.6/enable-configure-mcp-server.html" rel="noopener noreferrer"&gt;Enable and Configure Appian MCP Server&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developers&lt;/strong&gt; expose design objects as MCP tools — see &lt;a href="https://docs.appian.com/suite/help/26.6/make-available-mcp-tools.html" rel="noopener noreferrer"&gt;Make Design Objects Available as MCP Tools&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;End users&lt;/strong&gt; connect their AI application using configuration details from their user settings — see &lt;a href="https://docs.appian.com/suite/help/26.6/connect-ai-application-to-mcp.html" rel="noopener noreferrer"&gt;Connect Your AI Application to Appian MCP Server&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now your AI assistant can query record data, run expression rules, kick off process models, and even invoke AI agents — right from the tool you already use. Have you tried connecting an AI tool to your Appian environment yet?&lt;/p&gt;

</description>
      <category>ai</category>
      <category>api</category>
      <category>mcp</category>
      <category>softwaredevelopment</category>
    </item>
    <item>
      <title>Appian Integration With Telegram</title>
      <dc:creator>Vamsi Krishna</dc:creator>
      <pubDate>Sun, 31 May 2026 07:31:30 +0000</pubDate>
      <link>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-integration-with-telegram-2n03</link>
      <guid>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-integration-with-telegram-2n03</guid>
      <description>&lt;p&gt;Telegram is a popular messaging app that offers advanced features such as encryption, file sharing, and bots. Appian is a low-code platform that allows businesses to create custom enterprise applications quickly and efficiently.&lt;/p&gt;

&lt;p&gt;In this article, we will discuss the steps to integrate Appian with Telegram.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Create a Telegram Bot
&lt;/h2&gt;

&lt;p&gt;A bot is a special type of account that can send and receive messages automatically. In Telegram, search for &lt;strong&gt;BotFather&lt;/strong&gt; and enter &lt;code&gt;/start&lt;/code&gt; to start the conversation. Enter &lt;code&gt;/newbot&lt;/code&gt;, give it a name (displayed in the chat), and a username which should end with &lt;code&gt;bot&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy5b04nohw5puy40lrbs0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy5b04nohw5puy40lrbs0.png" alt="BotFather" width="799" height="509"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once you have created the bot, Telegram will provide you with an &lt;strong&gt;API key&lt;/strong&gt;. This key is required to integrate Telegram with Appian.&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 2: Get Chat ID
&lt;/h2&gt;

&lt;p&gt;Search for the bot you created above in Telegram and send it a message.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1uwndh701eicx364nuc2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1uwndh701eicx364nuc2.png" alt="Send message to bot" width="798" height="124"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Create an Appian Integration object with the following values:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;URL input&lt;/strong&gt; : &lt;code&gt;https://api.telegram.org/bot&amp;lt;your-bot-API-key&amp;gt;/getUpdates&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Method&lt;/strong&gt; : &lt;code&gt;GET&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Test the integration. Save the highlighted &lt;code&gt;id&lt;/code&gt; from the response — this is the &lt;strong&gt;chat ID&lt;/strong&gt; , used to send messages.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F63yzg676h5ez42iz6c49.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F63yzg676h5ez42iz6c49.png" alt="Chat ID response" width="799" height="205"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 3: Send a Message
&lt;/h2&gt;

&lt;p&gt;Create another integration object with the following values:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;URL input&lt;/strong&gt; : &lt;code&gt;https://api.telegram.org/bot&amp;lt;your-bot-API-key&amp;gt;/sendMessage&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Method&lt;/strong&gt; : &lt;code&gt;GET&lt;/code&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Query Parameters:&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Parameter&lt;/th&gt;
&lt;th&gt;Value&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;text&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;“Message to send”&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;code&gt;chat_id&lt;/code&gt;&lt;/td&gt;
&lt;td&gt;ID from Step 2&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpeb8zf8rk9jrmuqrd3w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpeb8zf8rk9jrmuqrd3w.png" alt="Integration setup" width="800" height="567"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;If the integration is working correctly, the message should be received in Telegram.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9b21orqkni40rlmtre0k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9b21orqkni40rlmtre0k.png" alt="Message received" width="800" height="551"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once the integration is complete, you can use it to receive notifications and send messages directly from Appian to Telegram.&lt;/p&gt;

&lt;p&gt;In conclusion, integrating Appian with Telegram is a simple and effective way to improve communication and collaboration within your organization.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Appian Integration with ChatGPT</title>
      <dc:creator>Vamsi Krishna</dc:creator>
      <pubDate>Mon, 23 Feb 2026 12:37:59 +0000</pubDate>
      <link>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-integration-with-chatgpt-16lh</link>
      <guid>https://dev.to/vamsi_krishna_8cc2cb8f318/appian-integration-with-chatgpt-16lh</guid>
      <description>&lt;p&gt;Appian is a low-code automation platform that enables organizations to quickly build, deploy, and scale enterprise-grade applications. On the other hand, ChatGPT is an advanced natural language processing AI model that can understand and generate human-like text.&lt;/p&gt;

&lt;p&gt;In this article, we will discuss the steps to integrate Appian with ChatGPT.&lt;/p&gt;

&lt;p&gt;Step 1: Create an account in ChatGPT&lt;/p&gt;

&lt;p&gt;Open &lt;a href="https://chat.openai.com/" rel="noopener noreferrer"&gt;https://chat.openai.com&lt;/a&gt; and signup to create an account.&lt;/p&gt;

&lt;p&gt;Step 2: Generate API Key&lt;/p&gt;

&lt;p&gt;Open &lt;a href="https://beta.openai.com/account/api-keys" rel="noopener noreferrer"&gt;https://beta.openai.com/account/api-keys&lt;/a&gt; , and create a new secret key. Save the generated key.&lt;/p&gt;

&lt;p&gt;Step 3: Configure OpenAI Connected System in Appian&lt;/p&gt;

&lt;p&gt;Add the plugin (OpenAI) from Appian Admin Console. &lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw7g4ljwhqhdfvkgezpax.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fw7g4ljwhqhdfvkgezpax.png" alt="plugin_image" width="799" height="358"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Once the plugin is deployed, Create a new connected system, search and select OpenAI connected system.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx4bhg6j0fsg9r6uqp6uj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fx4bhg6j0fsg9r6uqp6uj.png" alt="connectedSystem" width="799" height="540"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Enter the API key generated from step 2. The organization field is optional and can be left blank and save the connected System.&lt;/p&gt;

&lt;p&gt;Step 4: Create integration.&lt;/p&gt;

&lt;p&gt;Create an integration object and select the OpenAI connected system created in step 3.&lt;/p&gt;

&lt;p&gt;Select the Operation as “Open AI (Reads Data)” and select the Endpoint.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnx9tabq8lvhgdy9qslsc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnx9tabq8lvhgdy9qslsc.png" alt="plugin-cs" width="800" height="558"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the request body, give the below value.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;{
 model: "text-curie-001",
 prompt: "who is michael jackson",
 max_tokens: 1000,
}

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Save the changes and click “Test Request”. You would get the response from chatGPT API.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3pq7lxjxvzqriivpejoi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3pq7lxjxvzqriivpejoi.png" alt="response" width="800" height="266"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can play around with different endpoints and different models.&lt;/p&gt;

&lt;p&gt;Other models can be found at &lt;a href="https://platform.openai.com/docs/models/gpt-3" rel="noopener noreferrer"&gt;https://platform.openai.com/docs/models/gpt-3&lt;/a&gt;. I will be using “text-curie-001” model as it is faster and cheaper.&lt;/p&gt;

</description>
      <category>appian</category>
      <category>ai</category>
    </item>
    <item>
      <title>Appian AI Composer</title>
      <dc:creator>Vamsi Krishna</dc:creator>
      <pubDate>Tue, 17 Feb 2026 06:31:38 +0000</pubDate>
      <link>https://dev.to/vamsi_krishna_8cc2cb8f318/learn-quantum-computing-4lk7</link>
      <guid>https://dev.to/vamsi_krishna_8cc2cb8f318/learn-quantum-computing-4lk7</guid>
      <description>&lt;p&gt;Appian Composer is a new feature generally available to all users in 25.4 version.&lt;br&gt;
It helps users to generate objects based on a prompt or document upload which contains the details regarding the new application being created.&lt;br&gt;
Composer is useful as a tool to track progress of the application and the high level features of the application.&lt;/p&gt;

</description>
      <category>lowcode</category>
      <category>appian</category>
      <category>ai</category>
    </item>
  </channel>
</rss>
