LogoLogo
  • 👋Welcome to Arcee AI Docs
  • Arcee Orchestra
    • Introduction to Arcee Orchestra
    • Getting Started
    • Workflows
      • Workflow Components
        • Model Node
        • Code Node
        • Integrations
        • Knowledge Retrieval
        • Conditional Node
      • Passing Variables
      • API Invocation
        • List Available Workflows API
        • Workflow Execution API
        • Workflow Execution Steps API
        • Execution History API
        • Workflow Diagram API
        • API Code Examples
        • Upload Workflow JSON API
        • Workflow Runs API
    • Workflow Library
      • Research Automation
      • Real Time Financial Analysis
      • Blog Writer
      • Code Improvement
      • Energy Domain Assistant
    • Chat Interface
    • FAQ
  • ARCEE CONDUCTOR
    • Introduction to Arcee Conductor
    • Getting Started
    • Features & Functionality
      • Auto Mode
      • Auto Reasoning Mode
      • Auto Tools Mode
      • Compare
      • Direct Model Invocation
      • Usage
      • API
    • Arcee Small Language Models
      • Model Selection
      • Model Performance
    • Pricing
Powered by GitBook
On this page
  • Registration
  • Using Arcee Conductor
  1. ARCEE CONDUCTOR

Getting Started

PreviousIntroduction to Arcee ConductorNextFeatures & Functionality

Last updated 24 days ago

Try Arcee Conductor today! Sign up at to receive $20 in credits and see how you can save up to 64% on your model costs.

Registration

Select Login, then Register and you can sign up using your email address or Google authentication.

Using Arcee Conductor

Arcee Conductor can be utilized in two primary ways:

  1. User Interface

  2. Application Programming Interface (APIs)

User Interface

In both the chat interface and comparison sections, each model response is accompanied by model metrics and selection details and explanation.

In this example, a very simple prompt is asked "Tell me a joke". In addition, to the (quite humorous) response, you're provided the following information:

  • The model that was selected

  • Input tokens

  • Output tokens

  • Response Time

  • Cost of the query

  • Explanation for why the specific model was selected

  • Categorization for:

    • Task type

    • Domain

    • Complexity

API

You can also directly invoke Arcee Conductor via API. The Conductor API uses an OpenAI compatible endpoint making it very easy to update current applications to use Conductor.

To use the API, create an API key by selecting "API Key" from the Navigation pop up or "Get an API key" from API details. You can then invoke Conductor using:

curl -X POST https://models.arcee.ai/v1/chat/completions \
  -H "Authorization: Bearer $ARCEE_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
        "model": "auto",
        "messages": [
          {
            "role": "user",
            "content": "Your prompt here"
          }
        ]
      }'

To register for Arcee Conductor, go to .

The UI provides a chat interface to directly invoke Arcee Conductor, as well as a feature to conduct side by side evaluations of Arcee Conductor's performance against other models.

This allows you to get a comprehensive understanding of the performance for your query as well as why the specific model was selected. For additional information on the router classifications and models available in Conductor, go to .

For more information on the API, including code snippets to integrate Conductor, go to .

conductor.arcee.ai
Compare
Auto Mode
API
https://conductor.arcee.ai/
Arcee Conductor
Arcee Conductor Registration
Model Response Example
Page cover image