Skip to content

neodyland/chat-lmsys

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ChatLMSYS

ChatLMSYS is a Python package that automates chat.lmsys.org and enables you to run LLM programmatically.

Installation

You can install ChatLMSYS using pip:

pip install git+https://github.com/neodyland/chat-lmsys

Example

import asyncio
from ChatLMSYS import ChatLMSYS, Model


chat = ChatLMSYS()

async def main():
    result = await chat.ask(
        Model.LLAMA_3_70B_INSTRUCT, "PythonでHello, World!を出力してください。"
    )
    print(result)

asyncio.run(main())

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages