Aurixel
模型/Meta/llama-3.3-70b-groq
Meta

Llama 3.3 70B

文本
上下文
131.1K
最大输出
32.8K
输入
$0.1
/M tokens
输出
$0.32
/M tokens

The Meta Llama 3.3 multilingual large language model (LLM) is a pretrained and instruction tuned generative model in 70B (text in/text out).

快速开始

python
from openai import OpenAI

client = OpenAI(
  api_key="$CK_KEY",
  base_url="https://conduit-api.aurixel.ai/v1",
)
resp = client.chat.completions.create(
  model="llama-3.3-70b-groq",
  messages=[{"role": "user", "content": "Hi!"}],
)
print(resp.choices[0].message.content)

来自 Meta 的其他模型