openlm
openlm copied to clipboard
OpenAI-compatible Python client that can call any LLM
Results
1
openlm issues
Sort by
recently updated
recently updated
newest added
tried with version .5 and .4 on pypi ``` import openlm as openai import json completion = openai.Completion.create( model="ada", prompt="Hello world", ) print(json.dumps(completion, indent=4)) ``` if I use openai instead...