Tycho Chunks
https://api.lune.dev/chat/get_context_for_query
This endpoint allows you to retrieve relevent context from individual Lunes without specifying the Lunes you want to query.
By passing the endpoint a technical question or any string about code, the endpoint will return a list of contextual chunks from Lunes that are automatically matched to your query, using our automatic context switching agent Tycho.
Request body
The following fields are supported:
user_query_summary
string Required:
- the user query summary to run retrieval on
top_k
int Optional (defaults to 5):
- The number of chunks to return.
stream
bool Optional (defaults to false)
- Whether to stream the response or not
Request Example
Using the python langchain
Lune to query about the AI Message Chunk object in Langchain.
curl https://api.lune.dev/chat/get_context_for_query \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $LUNE_API_KEY" \
-d '{
"user_query_summary": "What is the format of the AIMessageChunk object in Langchain?",
"top_k": 2,
"stream": false
}'
Response Examples
{
"context_chunks":[
{
"content":"context",
"source":"https://python.langchain.com/api_reference/core/messages.html"
},
{
"content":"context",
"source":"https://python.langchain.com/api_reference/core/messages/langchain_core.messages.ai.AIMessageChunk.html"
}
]
}