Skip to main content

Documentation Index

Fetch the complete documentation index at: https://morphik.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

def create_app(
    name: str,
) -> Dict[str, str]

Parameters

  • name (str): App display name

Returns

  • Dict[str, str]: Response containing the authenticated URI and app metadata

Examples

from morphik import Morphik

db = Morphik()
resp = db.create_app(name="demo")
print(resp)

Notes

  • generate_cloud_uri is a deprecated alias for this method.
  • The SDK only accepts name for app creation.