Skip to content

v0.5.10

Compare
Choose a tag to compare
@takatost takatost released this 19 Mar 13:42
· 2060 commits to main since this release
11636bc

New Features

  • Added Anthripic claude-3-haiku-20240307 by @lroolle #2825
  • Added weekday calculator in time tool by @bowenliang123 in #2822
  • Added model provider 01.ai, yi-chat-34b series by @soulteary in #2865
  • Added Embedding models for the Aliyun dashscope text-embedding-v1 and text-embedding-v2 by @Onelevenvy in #2874
  • Added tools for open weather search and image generation using the Spark API. by @Onelevenvy in #2845
  • Added AWS Bedrock Claude3 by @soulteary in #2864
  • Added support Azure OpenAI llm 0125 version by @leslie2046 in #2889
  • Added NVIDIA model provider by @joshua20231026 in #2900
  • Fix some problems.

Update Guide

Deploying with Docker Compose:

  1. Get the latest code from the main branch:

    git checkout main
    git pull origin main
  2. Go to the next step and update to the latest image:

    cd docker
    docker-compose up -d

Deploying from Source Code:

  1. Stop API server, Worker and Web frontend Server.

  2. Get the latest code from the main branch:

    git checkout main
    git pull origin main
  3. Update Python dependencies:

    cd api
    pip install -r requirements.txt
  4. Then, let's run the migration script:

    flask db upgrade
  5. Finally, run API server, Worker and Web frontend Server again.

What's Changed

New Contributors

Full Changelog: 0.5.9...0.5.10