Feedback from testing AIx GPT-J API in Pen.el

1 · Shane Mulligan · Aug. 5, 2021, 1:30 p.m.
Feedback Max tokens not working? I adjust the pen-aix script to print the tokens at the end of the completion. 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 #!/usr/bin/python3 from aixapi import AIxResource import os # Get your API Key at apps.aixsolutionsgroup.com # model=os.environ.get("PEN_ENGINE"), if __name__ == "__main__": api_key = os.environ.get("AIX_API_KEY") aix_resource = AIxResource(api_key) print( str( aix_resource....