🔗 URL Parameters
FlowChat allows you to customize individual chat sessions through URL parameters. These parameters provide a way to set specific configurations, enable features, and define model settings directly from the web address.
URL Parameter Overview
The following table lists the available URL parameters and their functions.
| Parameter | Description | Example |
|---|---|---|
model | Specifies a single model to be used for the chat. | /?model=gpt-4o |
models | Specifies multiple models as a comma-separated list. | /?models=flow-imagen |
q | Sets an initial query or prompt for the chat. | /?q=Hello |
temporary-chat | Marks the chat as temporary (no history saved). | /?temporary-chat=true |
youtube | Specifies a YouTube video ID to be transcribed. | /?youtube=VIDEO_ID |
load-url | Fetches a website URL to be used as context. | /?load-url=https://example.com |
web-search | Enables web search functionality for the session. | /?web-search=true |
code-interpreter | Enables the code interpreter for the session. | /?code-interpreter=true |
image-generation | Enables image generation for the session. | /?image-generation=true |
call | Enables the voice/video call overlay. | /?call=true |
Key Parameter Details
1. Model Selection
Use model or models to pre-select which AI models should be used for the chat. This is useful for sharing specific workflows or comparing model outputs.
2. Initial Query
The q parameter allows you to start a chat with a predefined prompt. The AI will automatically respond to this query as soon as the page loads.
3. Media & Web Context
- YouTube: Use
youtube=VIDEO_IDto automatically transcribe and analyze a video. - Web Content: Use
load-url=URLto ingest the content of a specific webpage into the chat context. - Web Search: Set
web-search=trueto allow the model to browse the web for real-time information.
4. Temporary Sessions
Setting temporary-chat=true initiates a disposable session. Conversations in this mode are not saved to your history, providing a higher level of privacy for one-time interactions.
5. Advanced Tools
Parameters like code-interpreter and image-generation can be used to ensure specific capabilities are active and ready for your next prompt.
Combining Parameters
You can combine multiple parameters to create highly tailored chat environments. For example:
/?model=gpt-4o&q=Summarize this video&youtube=VIDEO_ID&temporary-chat=true
This URL will initialize a temporary chat with GPT-4o, transcribe the specified video, and immediately ask the AI to summarize it.