GitHub Copilot

yiankos1

Well-Known Member
Licensed User
Longtime User

Available in VScode, JetBrains IDE, Visual Studio. Could it be available in B4X someday?
 

thinktank

Member
Abdul Cadre posted an Android app example for using GPT-3


I tested the app and it generates almost correct B4A code... My question was "Write b4a code to add two integers".

Response from GPT-3:
Dim x As Int
Dim y As Int
x = 5
y = 10

Dim result As Int
result = x + y

Log(result)


I think as a start, GPT-3 API can be used to achieve some CoPilot functionalities in B4X...
 
Last edited:
Top