ℹ️ These docs are for the free version of Galileo. Documentation for current customers can be found here.
Overview
Get Started
How-to Guides
- Overview
- Logging Basics
- Agentic AI
- Conversational AI
- Luna-2
- Metrics
- Retrieval-Augmented Generation
Cookbooks
- Overview
- Agents
- RAG
Integrations
Concepts
- Metrics
- Luna-2
- Projects
- Logging
- Annotations
- Experiments
- Playground
log_stream
Create Log Stream
Create a new log stream for a project.
POST
/
v2
/
projects
/
{project_id}
/
log_streams
Create Log Stream
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/projects/{project_id}/log_streams \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"name": "my_first_log_stream"
}'
Copy
Ask AI
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"project_id": "<string>",
"created_by": "<string>"
}
Authorizations
Path Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Create Log Stream
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/projects/{project_id}/log_streams \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"name": "my_first_log_stream"
}'
Copy
Ask AI
{
"id": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"project_id": "<string>",
"created_by": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.