mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-11 03:29:14 +03:00
9 lines
192 B
Python
9 lines
192 B
Python
import os
|
|
from uuid import UUID
|
|
|
|
|
|
def get_brain_url(origin: str, brain_id: UUID) -> str:
|
|
"""Generates the brain URL based on the brain_id."""
|
|
|
|
return f"{origin}/invitation/{brain_id}"
|