Codellama 70b Instruct
Code Llama is a family of large language models for code. This one is based on [Llama 2 70B](/models/meta-llama/llama-2-70b-chat) and provides zero-shot instruction-following ability for programming tasks.
Pricing
💱 匯率 USD/NTD = 32.34 · 不含稅 · 更新於 2026/07/22
Technical specifications
Quick Start
Use Codellama 70b Instruct via BazaarLink API — just change the base_url:
from openai import OpenAI
client = OpenAI(
base_url="https://bazaarlink.ai/api/v1",
api_key="sk-bl-YOUR_API_KEY",
)
response = client.chat.completions.create(
model="codellama-70b-instruct",
messages=[{"role": "user", "content": "Hello!"}],
)
print(response.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://bazaarlink.ai/api/v1",
apiKey: "sk-bl-YOUR_API_KEY",
});
const response = await client.chat.completions.create({
model: "codellama-70b-instruct",
messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);Why use Codellama 70b Instruct via BazaarLink?
- ✓USD billing (TWD-quoted) + unified invoices — no foreign credit card needed for Taiwan teams
- ✓OpenAI-compatible API — zero code changes required
- ✓Automatic failover — multi-provider redundancy for the same model
- ✓Chinese-language support — local team, instant help
Frequently Asked Questions
What is Codellama 70b Instruct?
Code Llama is a family of large language models for code. This one is based on [Llama 2 70B](/models/meta-llama/llama-2-70b-chat) and provides zero-shot instruction-following ability for programming tasks.
How much does the Codellama 70b Instruct API cost?
Codellama 70b Instruct pricing is available on this page. BazaarLink bills in TWD with no additional markup over the provider's list price.
How do I use Codellama 70b Instruct with the OpenAI SDK?
Set base_url to "https://bazaarlink.ai/api/v1" and use model ID "codellama-70b-instruct". All OpenAI SDK methods (chat.completions, embeddings, streaming) work without code changes.
What is the context window for Codellama 70b Instruct?
Codellama 70b Instruct supports a context window of 2,048 tokens.
Is Codellama 70b Instruct available for free?
Codellama 70b Instruct is a paid model. BazaarLink offers free trial credits on registration so you can test it without a credit card.