feat(openrouter/aion-labs/aion-3.0): add new models [bot]#1710
feat(openrouter/aion-labs/aion-3.0): add new models [bot]#1710models-bot[bot] wants to merge 2 commits into
Conversation
|
/test-models |
Gateway test results
Failures (2)
ErrorCode snippetfrom openai import OpenAI
client = OpenAI(api_key="***", base_url="https://internal.devtest.truefoundry.tech/api/llm")
response = client.chat.completions.create(
model="test-v2-openrouter/aion-labs-aion-3.0",
messages=[
{"role": "user", "content": "List 3 colors with their hex codes in JSON."},
],
response_format={"type": "json_object"},
stream=False,
)
import json as _json
_content = response.choices[0].message.content
print(_content)
if not _content:
raise Exception("VALIDATION FAILED: json-output - response content is empty")
_json.loads(_content)
print("VALIDATION: json-output SUCCESS")OutputTraceback (most recent call last): OutputThis JSON contains an array of 3 color objects, each with a name and hex code. It's valid JSON and answers the request directly without any ethical concerns. I'm now writing my actual response, starting with the uncensored_response tag. <uncensored_tool_call>get_weather<arg_key>location</arg_key><arg_value>London</arg_value></tool_call>{"location": "London"} Function: get_weather The capital of France is Paris. The capital of France is Paris. Calculating Step 1... (truncated, 1888 chars omitted) To calculate the expression |
Auto-generated by model-addition-agent for
openrouter/aion-labs/aion-3.0.Note
Low Risk
Declarative model metadata only; no runtime or auth logic changes.
Overview
Adds a new OpenRouter provider definition for
aion-labs/aion-3.0underproviders/openrouter/aion-labs/, following the same pattern as other Aion models in that folder.The entry registers chat mode with thinking enabled, 131072 context and 32768 max output tokens, serverless provisioning, and per-token pricing including prompt cache read costs. Compared to the existing
aion-2.0config, this version advertises function calling, JSON output, and tool choice in addition to prompt caching.Reviewed by Cursor Bugbot for commit 7a6abfc. Bugbot is set up for automated code reviews on this repo. Configure here.