Skip to content

AGIOne User Guide for End Users ​

This guide is written for first-time AGIOne users. It walks you through the full basic workflow: signing in, claiming free quota, trying a model in the web playground, and calling the model with curl. Usernames, passwords, and API keys are shown as placeholders only.

Applicable Roles ​

  • End User trying and calling a model
  • Model Provider reviewing the resulting customer call records

1. Before You Start ​

Prepare the following information before using AGIOne.

ItemExample or Description
Platform URLhttps://agione.pro/
Username{USERNAME}
Password{PASSWORD}
Model API Key{API_KEY}, copied from the Quick Start page

This guide uses Qwen3.5-27b as an example. Model availability and provider-instance identifiers can vary by environment.

ItemValue
Model NameQwen3.5-27b
Model Identifier{MODEL_IDENTIFIER}
Protocolopenai/chat_completions
API Endpointhttps://agione.pro/hyperone/xapi/api/v1/chat/completions

Provider-instance call identifiers can vary by environment, provider, or region. Copy the identifier shown in the current environment from the selected provider card or Quick Start before calling.

2. Sign In to AGIOne ​

2.1 Open the Sign-In Page ​

Enter the following address in your browser:

text
https://agione.pro/user/login

You will see the AGIOne sign-in page.

Sign-in page

2.2 Fill In the Sign-In Form ​

Fill in the form in the following order.

StepActionValue
1Enter your username in Username or email{USERNAME}
2Enter your password in Password{PASSWORD}
3Select the agreement checkboxCheck it
4Click Sign inWait for the platform to open

If a privacy policy or service terms dialog appears, click Agree.

2.3 Confirm That Sign-In Succeeded ​

After signing in successfully, you should see a user avatar or initial in the upper-right corner. The left-side menu should show entries such as Discover, Playground, Studio, Usage & Earnings, and My Calls.

3. Open the Model List ​

3.1 Open Model Services ​

After signing in, open:

text
https://agione.pro/modelone/store/model

You can also navigate through the page menu:

text
Model Services > Discover > Models

3.2 Find Qwen3.5-27b ​

Search for Qwen3.5-27b in the model list. The list is sorted by Newest, so use the search box instead of relying on the model's position in the current list. After you find it, click View on the model row.

Qwen3.5-27b in the model list

4. Claim Free Quota ​

The free quota entry is on the provider card in the model detail page, next to the Playground button.

4.1 Open the Model Detail Page ​

After opening the Qwen3.5-27b detail page, confirm that you can see the following information.

Check ItemExpected Value
Model NameQwen3.5-27b
Model IDqwen/qwen3.5-27b
Provider Card Call Identifier{MODEL_IDENTIFIER}
Quota ButtonClaim Free Quota
Trial EntryPlayground

Free quota entry on the model detail page

4.2 Click to Claim ​

On the provider card, click:

text
Claim Free Quota

After the quota is claimed successfully, the page shows a success message and the button changes to:

text
Claimed

Free quota claimed successfully

4.3 Confirm That the Quota Was Claimed ​

Any of the following signs means the quota has been claimed successfully.

Success SignDescription
The page shows Successfully claimedThe platform has completed the claim
The button changes to ClaimedThe current account has already claimed the free quota for this model
The model detail page still shows Claimed after reopening itThe claim status has been saved

5. Try the Model in the Web Playground ​

The web playground is the easiest way to try a model. You do not need to write code.

5.1 Open Playground from the Detail Page ​

On the Qwen3.5-27b model detail page, click the following button on the provider card:

text
Playground

You can also open it from the left-side menu:

text
Playground > Text

If you open it from the left-side menu, select the target model manually. If you open it from the model detail page, the current model is usually preselected.

Text playground page

5.2 Send a Test Message ​

After entering the text playground page, follow these steps.

StepActionRecommended Value
1Confirm Model Sub-TypeLLM
2Confirm or select the modelThe provider model for Qwen3.5-27b
3Confirm Protocolopenai/chat_completions
4Adjust parameters if neededBeginners can keep the default values
5Enter a question in the input box at the bottomIntroduce AGIOne in one sentence.
6Click the send buttonWait for the model response

If the generated response appears in the chat area, the playground call has succeeded.

5.3 Select the Playground That Matches the Model Modality ​

The model's capabilities and input/output modalities determine which playground to use. Do not validate image, video, or audio models with text-model parameters.

ModalityMenu PathValidate
Text / chatPlayground > TextPrompt, Temperature, Top-P, Max Tokens, response, and latency
Image / multimodalPlayground > ImagesAuthorized image, prompt, size, count, output image, and request ID
VideoPlayground > VideoAuthorized short video, frame sampling, duration, result, and asynchronous latency
Speech / audioPlayground > AudioAudio format, sample rate, language, voice, and text or audio output

For an image model, choose an available image or multimodal model, upload sanitized and authorized material, set the prompt and size, and send the request.

Select an image playground model

For a video model, first use a short sanitized sample to validate frame sampling, output format, and asynchronous results before increasing input size.

Configure video playground parameters

For an audio model, confirm input format, language, and output type. Do not upload original recordings that contain customer privacy.

Select an audio playground model

6. Call the Model with curl ​

Use curl when you want to call the model from a command line, script, or backend service.

6.1 Open the Quick Start Page ​

Go back to the model detail page and click:

text
Quick Start

On the Quick Start page, you can find the following information.

InformationPurpose
Model ID Call IdentifierThe provider-specific value used in the model field
Base URLThe API service base address
PathThe protocol path appended to the base URL
Full URLThe complete curl request URL
Model API KeyThe authentication key selected in the AUTHENTICATION section
Curl ExampleA ready-to-use reference command

The API key in the screenshot is redacted. In actual use, copy your own API key from the page.

Quick Start curl example

6.2 Copy the API Key ​

Find Model API Keys in the AUTHENTICATION section, select an authorized key, then click Copy.

Please note:

NoteDescription
Do not share your API key with othersThe API key can be used to call models under your account
Do not commit it to public documents or code repositoriesStore it as an environment variable when possible
This guide uses {API_KEY}Replace it with your real key when calling the API

6.3 curl Example ​

Replace {API_KEY} and {MODEL_IDENTIFIER} with values copied from the current environment, then run the command in your terminal.

bash
curl -X POST "https://agione.pro/hyperone/xapi/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {API_KEY}" \
  -d '{
    "stream": true,
    "model": "{MODEL_IDENTIFIER}",
    "messages": [
      {
        "role": "user",
        "content": "Hello"
      }
    ]
  }'

6.4 Confirm That the API Call Succeeded ​

When the call succeeds, your terminal returns generated model output. Common signs of success include:

Check ItemSuccess Sign
Response contentThe response includes generated text
Model fieldThe response includes the current environment's model identifier
No authentication errorNo Unauthorized or Invalid API key error appears
No quota errorNo insufficient quota message appears

6.5 Quick Practice ​

Go to AGIOne Best Practices.

7. View Your Call Records ​

To confirm whether the model was actually called, check the call logs.

7.1 Open Call Logs ​

Open the following menu from the left side:

text
My Calls > Call Logs

7.2 Filter Call Records ​

StepAction
1Select the call time range
2Enter the model name or model ID
3Select the call status, such as success or failure
4Click Search
5Check the call time, model, status, token usage, and latency in the list
6To view more information, click Details on the target row

8. FAQ ​

8.1 What Should I Do If Sign-In Fails? ​

Possible CauseWhat to Do
Incorrect username or passwordConfirm {USERNAME} and {PASSWORD}
Agreement checkbox not selectedSelect the checkbox and sign in again
Agreement dialog not confirmedClick Agree

8.2 What Should I Do If I Cannot Find Qwen3.5-27b? ​

What to DoDescription
Search for Qwen3.5-27b in the model listUse the search box to locate it quickly
Make sure you are viewing All ModelsAvoid filtering to private models only
Change sorting or page through the listThe model may not be visible in the first screen

8.3 What Should I Do If the Claim Button Cannot Be Clicked? ​

Page StatusDescription
The button shows ClaimedThe current account has already claimed it
Claim Free Quota is missingThe model may not support free quota, or your account may not have permission
Nothing happens after clickingRefresh the page and try again, or confirm that you are still signed in

8.4 What Should I Do If the curl Call Fails? ​

Error SymptomWhat to Check
Authentication failureCheck whether the API key is complete and whether the header is Authorization: Bearer {API_KEY}
Model not foundCheck whether model matches the provider card call identifier copied from the current environment
Incorrect request URLCheck whether the URL is https://agione.pro/hyperone/xapi/api/v1/chat/completions
Invalid JSONCheck quotation marks, commas, and braces
Insufficient quotaConfirm that free quota has been claimed, or check your account quota

9. Quick Reference ​

FeatureEntry
Sign inhttps://agione.pro/user/login
Model listhttps://agione.pro/modelone/store/model
Qwen3.5-27b detail pageModel Services > Discover > Models > Qwen3.5-27b > View
Claim free quotaQwen3.5-27b detail page provider card > Claim Free Quota
Web playgroundQwen3.5-27b detail page provider card > Playground
API instructionsQwen3.5-27b detail page > Quick Start
Call logsMy Calls > Call Logs

Completion Checklist ​

Purpose: These are the exit criteria for the current feature task. Use them to decide whether the result is observable and reviewable and whether you can continue to the next step in the scenario. They do not repeat the procedure; if any item fails, follow the troubleshooting section below.

CheckPass Criteria
1Sign-in succeeds and the intended model can be found.
2Free quota or other authorized quota is available.
3A playground request and an API request both return valid responses.
4The API call appears in Call Logs with the expected model and status.

Troubleshooting ​

SymptomCheck First
The intended model cannot be foundModel publication state, public/private scope, account authorization, and marketplace filters
Playground works but the API request failsPersonal Key, endpoint, request headers, protocol, model identifier, and rate limit
The request succeeds but no call log appearsAccount and project scope, time range, model filter, and processing delay

User Manual ​