Skip to content

v1.7.0

Latest
Compare
Choose a tag to compare
@mjeremyhsu mjeremyhsu released this 14 Aug 16:16
· 9 commits to main since this release
f0829b7

Features

  1. Model Management
  • List Available Models (GET /models):
    You can now retrieve a list of available AI Chain configurations/models that can be used for AI Chain generating chat completions. This feature helps in identifying and selecting the right configuration/model for your needs.
  • Create a New Model (POST /models):
    This endpoint allows developers to create new AI Chain configurations/models with specified parameters. The creation process is straightforward and ensures that the new configuration/model is ready for immediate use.
  • Delete a Model (DELETE /models/{modelId}):
    A new functionality to delete AI Chain configuration/model by their unique identifier has been introduced. This ensures that obsolete or unused models can be removed efficiently.
  1. AI Chain Chat Completions (POST /chat/completions)
    This endpoint allows the API to generate chat completions based on the provided conversation history and model parameters.

  2. Logs Retrieval (GET /logs)
    We have added a new endpoint to fetch logs of the assistant prompts and their responses. This feature is crucial for debugging and analyzing the interactions that occur during chat completion processes.