Serverless
Our Serverless Service offers API based on Token Usage with Popular Models.
API Usage:
UI API:
# pip install openai
from openai import OpenAI
client = OpenAI(
base_url="https://api.parasail.io/v1",
api_key="<PARASAIL_API_KEY>"
)
chat_completion = client.chat.completions.create(
model="parasail-deepseek-r1",
messages=[{"role": "user", "content": "What is the capital of New York?"}]
)
print(chat_completion.choices[0].message.content)Getting an API Key:
Programmatically Find Models:
Using Third-Party Tools Like Cline, AnythingLLM:
Next steps
Last updated