Required parameters

  • providers: The providers to use for the application, e.g., openai.
  • model: The model to use for the application, e.g., gpt-4o.
  • parameters: The parameters to use for the application, e.g., {"temperature": 0.5, "system_prompt": "You are a helpful assistant"}.

Create an application

http.post("/v1/applications", {
    "name": "My application",
    "description": "My application description",
    "providers": "openai",
    "model": "gpt-4o",
    "parameters": {"temperature": 0.5, "system_prompt": "You are a helpful assistant"}
})