MyGit

v0.3.0

TaskingAI/TaskingAI

版本发布时间: 2024-06-03 22:52:16

TaskingAI/TaskingAI最新发布版本:v0.3.0(2024-06-03 22:52:16)

TaskingAI Updates: Version 0.3.0

What's New

  1. Markdown content rendering and image uploads are now supported in Playground. image

  2. We introduce an OpenAI-compatible chat completion API, allowing users to seamlessly create Language Learning Model (LLM) based tasks or agent-based invocations.

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_TASKINGAI_API_KEY",
    base_url="https://oapi.tasking.ai/v1",
)
response = client.chat.completions.create(
        model="YOUR_TASKINGAI_MODEL_ID", # or an assistant ID
        messages=[
            {"role": "user", "content": "Hello, how are you?"},
        ]
    )

print(response)
  1. Inference and Plugin service is now open source!

Key Fixes and Improvements

New Features

Testing and Quality Assurance

Miscellaneous

What's Changed

New Contributors

For a detailed overview of all changes, visit the full changelog.

相关地址:原始地址 下载(tar) 下载(zip)

查看:2024-06-03发行的版本