WatsonX client SDK for Db2 on IBM i
call watsonx.logoutjob();
call watsonx.setapikeyforjob('x');
call watsonx.setprojectidforjob('y');
-- Should return Y
values watsonx.ShouldGetNewToken();
-- Should return Y
values watsonx.authenticate();
-- Should return N
values watsonx.ShouldGetNewToken();
values watsonx.generate('Hello world');
values watsonx.generate('Hello world', model_id => 'ibm/granite-3-8b-instruct');
model_id
corresponds to the model list returned bywatsonx.GetModels()
.generate()
has aparameters
parameter that can be used to control the generation, typically used by advanced users.
values watsonx.parameters(temperature => 0.5, time_limit => 1000);
values watsonx.generate('Hello world', parameters => watsonx.parameters(temperature => 0.5, time_limit => 1000));
Coming soon.
Authorisation is not required to get the list of models.
call watsonx.GetModels();
To install on IBM i, you need to clone this git repository onto an IBM i. You can do this with the following methods:
- use
git clone
on this repo - download the repo as a .zip from GitHub and extract it to your IBM i
Once the repo sources are in the IFS, then you can use GNU Make to build the SDK. GNU Make, gmake
, is available in yum. Read more on the IBM i OSS docs.
Everything will get built into the watsonx
repository.
cd /where/you/extracted/the/repo
gmake