meta-llama/llama-3-8b-instruct:freeLlama 3 8B Instruct:Free is a chat model by Meta Llama. It has 8.0B parameters.
| Mode | chat |
| Function Calling | - |
| Vision | - |
| Reasoning | - |
| Web Search | - |
| Url Context | - |
| Architecture | LlamaForCausalLM |
| Model Type | llama |
| Languages | en |
| Library | transformers |
from openai import OpenAI
client = OpenAI(
base_url="https://api.haimaker.ai/v1",
api_key="YOUR_API_KEY",
)
response = client.chat.completions.create(
model="meta-llama/llama-3-8b-instruct:free",
messages=[
{"role": "user", "content": "Hello, how are you?"}
],
)
print(response.choices[0].message.content)OpenAI-compatible endpoint. Start building in minutes.