Skip to content

Utilized unify and build chat interface in the application where the user enters a prompt and simultaneously sees the output from the two chosen LLMs and see the Leaderboard of the LLMs which is performing well for given prompt

License

Notifications You must be signed in to change notification settings

samthakur587/LLM_playground

Repository files navigation

Screenshot

⚔️ Unify Chatbot Arena: Benchmarking LLMs in the Wild

This Streamlit application provides a user interface for interacting with Unify models through chat. It allows users to select models and providers, input text, and view the conversation history with AI assistants.

Developed with the software and tools below.


Table of Contents

Overview

This Streamlit application provides a user interface for interacting with Unify models through chat. It allows users to select models and providers, input text, and view the conversation history with AI assistants.


Features

  • Chat UI: Interactive chat interface to communicate with AI assistants.
  • Endpoint from Unify: Choose from a variety of models and providers.
  • Conversation History: View and track the conversation history with each model.
  • Clear History: Option to clear the conversation history for a fresh start.

Usage

  1. Input Unify API Key: Enter your Unify API key in the provided text input box on the sidebar you can get the api key from here.

  2. Select endpoints : Choose the models and providers from the sidebar dropdown menus.

  3. Start Chatting: Type your message in the chat input box and press "Enter" or click the "Send" button.

  4. View Conversation History: The conversation history with the AI assistant for each model is displayed in separate containers.

  5. Clear History: You can clear the conversation history by clicking the "Clear History" button.

  6. Vote: you can vote the model which one is doing great as it reflict in leaderboard.

  7. Leaderboard: you can see the winner and losser model as globel result.


Repository Structure

├── CONTRIBUTING.md
├── Dockerfile
├── LICENSE
├── Procfile
├── README.md
├── __init__.py
├── __pycache__
│   ├── __init__.cpython-310.pyc
│   └── helpers.cpython-310.pyc
├── app_screenshot_from_Kacper.png
├── chatbot_arena.py
├── detail_leaderboards.csv
├── detail_leaderboards.json
├── helpers.py
├── leaderboard.csv
├── models.json
├── pages
│   ├── 1_leaderboards.py
│   └── 2_import_model.py
├── requirements-test.txt
├── requirements.txt
├── test
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-310.pyc
│   │   └── test_app.cpython-310-pytest-8.2.0.pyc
│   └── test_helper.py
└── utils
    ├── __init__.py
    ├── logging.py
    └── metadata.py

Getting Started

System Requirements:

  • Python: version >=3.10

Installation

From source

Setup

  1. Clone this repository:

    git clone https://github.com/samthakur587/LLM_playground
  2. change directory

    cd LLM_playground
  3. Install the required dependencies:

    pip install -r requirements.txt

Usage

```bash
streamlit run stream.py
```

Tests

Run the test suite using the command below:

$ pytest -v test/*

Project Roadmap

  • ► building a simple web app
  • ► add gcp templte and dockerfile for deployment
  • ► add precommit hooks for clean code writing
  • ► merge the webapp into unify demos
  • ► deploy the webapp to gcp

Contributing

Contributions are welcome! Here are several ways you can contribute:


Contributing Guidelines

  1. Fork the Repository: Start by forking the project repository to your github account.
  2. Clone Locally: Clone the forked repository to your local machine using a git client.
    git clone https://github.com/samthakur587/LLM_playground
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to github: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.
  8. Review: Once your PR is reviewed and approved, it will be merged into the main branch. Congratulations on your contribution!

Contributor Graph


Used the Unify streaming API

  from unify import AsyncUnify
  import os
  import asyncio
  async_unify = AsyncUnify(
     # This is the default and optional to include.
     api_key=os.environ.get("UNIFY_KEY"),
     endpoint="llama-2-13b-chat@anyscale"
  )
async def main():
   responses = await async_unify.generate(user_prompt="Hello Llama! Who was Isaac Newton?")

asyncio.run(main())

License

This project is licensed under the MIT License - see the LICENSE file for details.

About

Utilized unify and build chat interface in the application where the user enters a prompt and simultaneously sees the output from the two chosen LLMs and see the Leaderboard of the LLMs which is performing well for given prompt

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published