Member-only story

5 easy steps to use free LLM API from together.ai

Morris Wong
3 min readMar 3, 2025

Together AI offers a powerful platform for accessing state-of-the-art language models, including the impressive Llama 3.3 70B Instruct Turbo. The best part? You can start using it for free! Here’s how to get started in just five easy steps:

Step 1: Sign up for a free account

Visit the Together AI website (https://api.together.xyz/) and create a free account. Upon signing up, you’ll automatically receive $1 in credit to help you get started with trying out inference and learning the API.

Step 2: Access your API key

After creating your account, you’ll be shown your API key on the initial welcome screen. If you miss it, don’t worry. You can access your API key at any time by clicking on your avatar in the top right corner, choosing ‘Settings,’ and then selecting ‘API Keys’.

Step 3: Choose your model

Together AI hosts a wide range of open-source large language models. Browse through their available models and select the one that best fits your needs. For example, you could try the Llama 3.3 70B Instruct Turbo Free model, which is optimized for dialogue and excels in various benchmarks.

Step 4: Set up your development environment

Install the necessary libraries to interact with the Together AI API. You can use popular libraries like OpenAI’s Python package or Together AI’s own SDK. Here’s a quick example using the OpenAI package:

import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ.get("TOGETHER_API_KEY"),
base_url="https://api.together.xyz/v1"
)
response = client.chat.completions.create(
model="meta-llama/Llama-3.3-70B-Instruct-Turbo-Free",
messages=[{"role": "user", "content": "What are some fun things to do in New York?"}]
)
print(response.choices[0].message.content)

Step 5: Start experimenting!

With your account set up and API key in hand, you’re ready to start experimenting with the Together AI API. Remember, as a free user, you’re limited to 60 requests per minute. This should be more than enough to get a feel for the capabilities of the various models and to start building your applications.

By following these five easy steps, you can begin leveraging the power of advanced language models through the Together AI API without any upfront cost. Whether you’re a developer, researcher, or just an AI enthusiast, this is an excellent opportunity to explore the possibilities of large language models. Happy coding!

Morris Wong
Morris Wong

Written by Morris Wong

Building LLMs and sharing the journey here!

No responses yet

Write a response