Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
sunbelt-plb-samples/ai/sunbelt_chat_resp.pls at main · KcsDev1982/sunbelt-plb-samples · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
KcsDev1982
/
sunbelt-plb-samples
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
5
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
main
Breadcrumbs
sunbelt-plb-samples
/
ai
/
sunbelt_chat_resp.pls
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
197 lines (167 loc) · 6.87 KB
main
Breadcrumbs
sunbelt-plb-samples
/
ai
/
sunbelt_chat_resp.pls
Copy path
Top
File metadata and controls
Code
Blame
197 lines (167 loc) · 6.87 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
*---------------------------------------------------------------
.
. Program Name: sunbelt_chat_resp.pls
. Description: PL/B AI ChatBot Sample Using Responses API
.
. Revision History:
.
. Date: 08/13/2025 SM
. Original code
.
. To download pictures via right click set the following
. in the PLBWIN.INI file
.
. PLBWIN_WVDEBUG=ON
.
INCLUDE plbequ.inc
INCLUDE plbmeth.inc
INCLUDE plbstdlib.inc
*---------------------------------------------------------------
.
. Runtime status variables
.
isGui BOOLEAN
isWebSrv BOOLEAN
isPlbSrv BOOLEAN
isWebview BOOLEAN
isWebCliApp BOOLEAN
isSmallScreen BOOLEAN
*---------------------------------------------------------------
.
. Global data
.
mainForm PLFORM sunbelt_chat_resp.plf
chatDtMessages DATATABLE
Client CLIENT
%ENCRYPTON
apiKey INIT "Add your OpenAI API key here"
%ENCRYPTOFF
*................................................................
.
. Code start
.
CALL Main
WINHIDE
LOOP
EVENTWAIT
REPEAT
STOP
*................................................................
.
. Check what type of runtime support we have
.
CheckStatus LFUNCTION
ENTRY
runtimeData DIM 50
runtimeVersion DIM 5
unused DIM 1
plbRuntime DIM 9
WidthData DIM 5
checkWidth FORM 5
GETMODE *GUI=isGui // Check for character mode runtime
IF (isGui)
CLOCK VERSION,runtimeData // Check windows console
UNPACK runtimeData,runtimeVersion,unused,plbRuntime
CHOP plbRuntime
IF (NOCASE plbRuntime == "PLBCON")
CLEAR isGui
ENDIF
IF (NOCASE plbRuntime == "PLBWEBSV")
SET isWebSrv
ENDIF
IF (NOCASE plbRuntime == "PLBSERVE")
SET isPlbSrv
ENDIF
ENDIF
IF (isGui)
WINHIDE
Client.Getstate Giving isWebCliApp Using $CLI_STATE_CORDOVA
Client.Getstate Giving isWebview Using $CLI_STATE_BOOTSTRAP5
IF (isWebSrv) // Check for a small screen (such as iphone)
Client.GetWinInfo Giving WidthData Using 0x2
MOVE WidthData To checkWidth
MOVE (checkWidth <= 700) to isSmallScreen
ENDIF
ENDIF
FUNCTIONEND
*................................................................
.
. Load a supporting HTML file
.
LoadSupportHtml LFUNCTION
htmlCtl HTMLCONTROL ^
fileName DIM 250
ENTRY
htmlFile FILE
htmlBuffer DIM ^
fileSize INTEGER 4
fullFileName DIM 250
seq FORM "-1"
EXCEPTSET NoFile IF IO
OPEN htmlFile,fileName,Read
GETFILE htmlFile,TxtName=fullFileName // Read the registration file into a buffer
FINDFILE fullFileName,FileSize=fileSize
IF (!fileSize)
INCR fileSize
ENDIF
DMAKE htmlBuffer,fileSize
READ htmlFile,Seq;*ABSON,htmlBuffer
htmlCtl.InnerHtml Using htmlBuffer,$HTML_HAS_EVENTS
CLOSE htmlFile
DFREE htmlBuffer
noFile
FUNCTIONEND
*................................................................
.
. SetFocus - set focus on prompt input area and set tab IDs
.
SetFocus LFUNCTION
ENTRY
SETFOCUS chatHtmlMessages
chatHtmlMessages.Focus Using "promptInput"
chatHtmlMessages.SetAttr using "promptInput", *NAME="data-plbtabid", *VALUE="1"
chatHtmlMessages.SetAttr using "sendBtn", *NAME="data-plbtabid", *VALUE="2"
chatHtmlMessages.SetAttr using "embedAddBtn", *NAME="data-plbtabid", *VALUE="3"
chatHtmlMessages.SetAttr using "createImage", *NAME="data-plbtabid", *VALUE="4"
chatHtmlMessages.SetAttr using "addContextBtn", *NAME="data-plbtabid", *VALUE="5"
chatHtmlMessages.SetAttr using "deleteFileContextBtn", *NAME="data-plbtabid", *VALUE="6"
chatHtmlMessages.SetAttr using "deleteAllEmbeddingsBtn", *NAME="data-plbtabid", *VALUE="7"
chatHtmlMessages.SetAttr using "modelPicker", *NAME="data-plbtabid", *VALUE="98"
chatHtmlMessages.SetAttr using "settingsBtn", *NAME="data-plbtabid", *VALUE="99"
chatHtmlMessages.SetAttr using "clearChat", *NAME="data-plbtabid", *VALUE="100"
chatHtmlMessages.SetAttr using "confirmClearChatBtn", *NAME="data-plbtabid", *VALUE="101"
chatHtmlMessages.SetAttr using "cancelClearChatBtn", *NAME="data-plbtabid", *VALUE="102"
chatHtmlMessages.UpdateEvents
FUNCTIONEND
*................................................................
.
. Main - Main program entry point
.
Main LFUNCTION
ENTRY
result FORM 4
jsCall DIM 4096
decryptedApiKey DIM 200
CALL CheckStatus
IF (!isGui)
KEYIN "This runtime can't run this program. ",result
STOP
ENDIF
IF (!isWebview)
ALERT STOP,"This program requires WebView support.",result
STOP
ENDIF
IF (isWebCliApp || isSmallScreen) // On smaller screens change to % positioning for left and width
SETMODE *PERCENTCONVERT=1
ENDIF
FORMLOAD mainForm
CALL LoadSupportHtml USING chatHtmlMessages,"sunbelt_chat_resp_sup.html"
CALL SetFocus
chatFrmMain.SetAsClient
Client.SetUTF8Convert Using 0
MOVE apiKey,decryptedApiKey
DECRYPT decryptedApiKey
PACK jsCall Using "setApiKey('",decryptedApiKey,"');" // set and give API key to the script
Client.jsrun USING jsCall
Client.FlushMessages
FUNCTIONEND
You can’t perform that action at this time.