Skip to content

IBM/WatsonX-SDK-Db2-IBMi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WatsonX-SDK-Db2-IBMi

WatsonX client SDK for Db2 on IBM i

Usage

Login

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();

Generate

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 by watsonx.GetModels().
  • generate() has a parameters 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));

Infer

Coming soon.

Model list

Authorisation is not required to get the list of models.

call watsonx.GetModels();

Installation

To install on IBM i, you need to clone this git repository onto an IBM i. You can do this with the following methods:

  1. use git clone on this repo
  2. 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

About

WatsonX client SDK for Db2 on IBM i

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •