The official Python SDK for Freeplay
The ops platform for enterprise AI engineering teams
Docs • Quick Start • SDK Setup • API Reference • Changelog • Contributing
Freeplay is the only platform your team needs to manage the end-to-end AI application development lifecycle. It provides an integrated workflow for improving your AI agents and other generative AI products. Engineers, data scientists, product managers, designers, and subject matter experts can all review production logs, curate datasets, experiment with changes, create and run evaluations, and deploy updates.
Use this SDK to integrate with Freeplay's core capabilities:
- Observability
- Sessions — group related interactions together, e.g. for multi-turn chat or complex agent interactions
- Traces — track multi-step agent workflows within sessions
- Completions — record LLM interactions for observability and debugging
- Customer Feedback — append user feedback and events to traces and completions
- Prompts — version, format, and fetch prompt templates across environments
- Test Runs — execute evaluation runs against prompts and datasets
- Python 3.8 or higher
- A Freeplay account + API key
pip install freeplayimport os
from freeplay import Freeplay, RecordPayload
from openai import OpenAI
fp_client = Freeplay(
freeplay_api_key=os.environ["FREEPLAY_API_KEY"],
)
openai_client = OpenAI()
project_id = os.environ["FREEPLAY_PROJECT_ID"]
# Fetch a prompt from Freeplay
formatted_prompt = fp_client.prompts.get_formatted(
project_id=project_id,
template_name="my-prompt",
environment="prod",
variables={"user_input": "Hello, world!"},
)
# Call your LLM provider with formatted_prompt.llm_prompt
response = openai_client.chat.completions.create(
model=formatted_prompt.prompt_info.model,
messages=formatted_prompt.llm_prompt,
)
# Record the interaction for observability
fp_client.recordings.create(
RecordPayload(
project_id=project_id,
all_messages=formatted_prompt.all_messages({
"role": "assistant",
"content": response.choices[0].message.content,
}),
)
)See the SDK Setup guide for complete examples.
export FREEPLAY_API_KEY="fp_..."
export FREEPLAY_PROJECT_ID="xy..."
# Optional: override if using a custom domain / private deployment
export FREEPLAY_API_BASE="https://app.freeplay.ai/api"API base URL
Default: https://app.freeplay.ai/api
Custom domain/private deployment: https://<your-domain>/api
This SDK follows Semantic Versioning (SemVer): MAJOR.MINOR.PATCH.
- PATCH: bug fixes
- MINOR: backward-compatible features
- MAJOR: breaking changes
Before upgrading major versions, review the changelog.
- Docs: https://docs.freeplay.ai
- Issues: https://github.com/freeplayai/freeplay-python/issues
- Security: security@freeplay.ai
See CONTRIBUTING.md.
Apache-2.0 — see LICENSE.