<?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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3765569%2Fa2ae4f7e-2b52-405d-814c-cc74ca9b452f.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 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="800" 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="800" 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>
